mirror of
https://github.com/open-goal/jak-project
synced 2026-07-11 15:28:58 -04:00
build: ensure zydis statically links when we want it to (#1599)
* build: ensure `zydis` statically links when we want it to * test * test-static * revert the static test commit * build: don't generate cmake twice on release builds
This commit is contained in:
@@ -49,7 +49,7 @@ jobs:
|
||||
|
||||
# TODO - CMake - replace with presets!
|
||||
- name: CMake Generation - Clang - ASAN
|
||||
if: matrix.compiler == 'clang'
|
||||
if: matrix.compiler == 'clang' && startsWith(github.ref, 'refs/tags/') == false
|
||||
env:
|
||||
CC: clang
|
||||
CXX: clang++
|
||||
|
||||
@@ -53,7 +53,7 @@ jobs:
|
||||
|
||||
- name: CMake Generation - Clang
|
||||
shell: cmd
|
||||
if: matrix.compiler == 'clang'
|
||||
if: matrix.compiler == 'clang' && startsWith(github.ref, 'refs/tags/') == false
|
||||
run: cmake -B build --preset=Release-clang -DCMAKE_C_COMPILER_LAUNCHER=${{ github.workspace }}/buildcache/bin/buildcache.exe -DCMAKE_CXX_COMPILER_LAUNCHER=${{ github.workspace }}/buildcache/bin/buildcache.exe .
|
||||
|
||||
- name: CMake Generation - Clang - Statically Linked
|
||||
|
||||
Reference in New Issue
Block a user