Skip to content

Commit

Permalink
ci: non-debug mode by default for baremetal
Browse files Browse the repository at this point in the history
  • Loading branch information
wey-gu committed May 24, 2024
1 parent 0e59a24 commit 602cc71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
build-and-lint-test-bare-metal:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
Expand All @@ -32,8 +32,8 @@ jobs:
- name: Build and Install NebulaGraph-Lite
run: pip3 install .

- name: Dry run `nebulagraph start`
run: nebulagraph --debug start --cleanup
- name: Dry run `nebulagraph start`, in case of error, will run with debug mode
run: nebulagraph start --cleanup || nebulagraph --debug start --cleanup

# error: Could not open the file: /sys/fs/cgroup/memory.max, seems cgroup version detection failed here
# let's skip this test for now
Expand Down

0 comments on commit 602cc71

Please sign in to comment.