Skip to content

Commit

Permalink
set CMAKE_BUILD_TYPE via configuration argument, closes #65 (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLartians authored Nov 10, 2020
1 parent 50fcbcc commit eadea97
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
- uses: actions/checkout@v1

- name: configure
run: cmake -Htest -Bbuild
run: cmake -Htest -Bbuild -DCMAKE_BUILD_TYPE=Debug

- name: build
run: cmake --build build --config Debug -j4
run: cmake --build build -j4

- name: test
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v1

- name: configure
run: cmake -Hstandalone -Bbuild
run: cmake -Hstandalone -Bbuild -DCMAKE_BUILD_TYPE=Debug

- name: build
run: cmake --build build -j4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- uses: actions/checkout@v1

- name: configure
run: cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1
run: cmake -Htest -Bbuild -DENABLE_TEST_COVERAGE=1 -DCMAKE_BUILD_TYPE=Debug

- name: build
run: cmake --build build --config Debug -j4
run: cmake --build build -j4

- name: test
run: |
Expand Down

0 comments on commit eadea97

Please sign in to comment.