Skip to content

Commit

Permalink
set build-on-push test to debug build
Browse files Browse the repository at this point in the history
This is to facilitate compile warnings as errors.
  • Loading branch information
ddennedy committed May 13, 2023
1 parent abaa932 commit 2ce1cf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
build-cmake:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2

Expand All @@ -39,7 +39,7 @@ jobs:
sudo apt-get -qq update
sudo apt-get -yqq build-dep mlt
sudo apt-get -yqq install cmake ninja-build kwalify
cmake -D BUILD_TESTING=ON -D SWIG_PYTHON=ON -S . -B build -G Ninja
cmake -D CMAKE_BUILD_TYPE=Debug -D BUILD_TESTING=ON -D SWIG_PYTHON=ON -S . -B build -G Ninja
cmake --build build
sudo cmake --install build
Expand Down

0 comments on commit 2ce1cf5

Please sign in to comment.