Skip to content

Commit

Permalink
update build checker action
Browse files Browse the repository at this point in the history
  • Loading branch information
jamorrison committed Jan 8, 2024
1 parent f0f3eb6 commit 7366898
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/check_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true

- name: Install system dependencies
run: sudo apt install libcurl4-openssl-dev

- name: Check build
run: make
run: mkdir build && cd build && cmake ../ && make

# These haven't been generated yet, so uncomment when ready
# - name: Run tests
Expand All @@ -32,11 +30,9 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
submodules: true

- name: Check build
run: make
run: mkdir build && cd build && cmake ../ && make

# These haven't been generated yet, so uncomment when ready
# - name: Run tests
Expand Down

0 comments on commit 7366898

Please sign in to comment.