summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-11-11 08:40:43 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-11-11 08:40:43 +0100
commit61ebb6d41c8a0202521f89591de6d007b461b2ff (patch)
tree7156821291be7924cf749b1c255b957f15a28cb7 /.github/workflows
parentee4806bfe8a29624f670f37334e3e382478325fc (diff)
ci: disable precompiled headers
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/cmake.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index b603e0fb..e2758877 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -41,7 +41,7 @@ jobs:
if: matrix.os == 'ubuntu-22.04'
- name: Configure
- run: ${{matrix.cmake}} -G "Ninja" -S ${{github.workspace}}/ -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
+ run: ${{matrix.cmake}} -G "Ninja" -S ${{github.workspace}}/ -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DFLOORMAT_PRECOMPILED-HEADERS:BOOL=OFF
- name: Build
run: ${{matrix.cmake}} --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target install