Skip to content

Commit

Permalink
spoa-4.1.2: simplify ci yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrekalo committed Nov 20, 2023
1 parent 4a6e174 commit 8b4d3d7
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/racon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
fail-fast: true
matrix:
image:
- gcc:7
Expand All @@ -23,27 +23,22 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Install build dependencies
run: |
chmod +x ci/install_deps.sh
./ci/install_deps.sh
- name: Create build directory
run: cmake -E make_directory build
- name: Generate build files
working-directory: build
run: >
cmake ..
-G Ninja
cmake -B ./build -G Ninja
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
working-directory: build
run: cmake --build .
run: cmake --build ./build

- name: Test
working-directory: build
run: |
bin/racon --version
bin/racon_test
./build/bin/racon --version
./build/bin/racon_test

0 comments on commit 8b4d3d7

Please sign in to comment.