gh actions: disable IPO for now (#1358)

This commit is contained in:
Dennis Brakhane
2025-12-11 18:36:42 +01:00
committed by GitHub
parent adc9aeefba
commit 4d2ca34e6f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ jobs:
- name: Compile with embedded shaders
run: |
cmake -B build -DCMAKE_BUILD_TYPE=Release -DWICKED_EMBED_SHADERS=YES -DWICKED_ENABLE_IPO=YES
cmake -B build -DCMAKE_BUILD_TYPE=Release -DWICKED_EMBED_SHADERS=YES -DWICKED_ENABLE_IPO=NO
make -C build -j$(nproc)
- name: Move files
+1 -1
View File
@@ -118,7 +118,7 @@ jobs:
- name: Compile with embedded shaders
run: |
CC=${{ matrix.cc }} CXX=${{ matrix.cxx }} cmake -B build -DWICKED_ENABLE_IPO=YES -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DWICKED_EMBED_SHADERS=YES
CC=${{ matrix.cc }} CXX=${{ matrix.cxx }} cmake -B build -DWICKED_ENABLE_IPO=NO -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DWICKED_EMBED_SHADERS=YES
make -C build -j$(nproc)
- name: Save Ccache database