Skip to content

Commit

Permalink
fixup #5
Browse files Browse the repository at this point in the history
  • Loading branch information
p4vook committed Dec 7, 2020
1 parent 77c4c4b commit 2de432f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,15 @@ jobs:
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: bash
working-directory: ${{runner.workspace}}/build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: cmake -S ${{runner.workspace}} -B ${{runner.workspace}}/build -DCMAKE_BUILD_TYPE=$BUILD_TYPE

- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --config $BUILD_TYPE
run: cmake --build ${{runner.workspace}}/build --config $BUILD_TYPE

- name: Test
working-directory: ${{runner.workspace}}/build
Expand Down

0 comments on commit 2de432f

Please sign in to comment.