Skip to content

Commit

Permalink
add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacyking committed Mar 20, 2023
1 parent ff0c6dc commit aff7f3e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
uses: actions/checkout@v2

- name: Configure cmake
run: cmake -B${{github.workspace}}/examples/build -DCMAKE_BUILD_TYPE=${{ matrix.configuration }}
working-directory: ${{github.workspace}}/examples
run: cmake -B${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.configuration }}

- name: Build with ${{ matrix.compiler }}
run: cmake --build ${{github.workspace}}/examples/build --config ${{ matrix.configuration }}
working-directory: ${{github.workspace}}/examples
run: cmake --build ${{github.workspace}}/build --config ${{ matrix.configuration }}

0 comments on commit aff7f3e

Please sign in to comment.