diff options
author | saturneric <[email protected]> | 2024-07-31 06:50:07 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-31 06:50:07 +0000 |
commit | 8e99ff11a60b5e4686776fba39709bee22d96b92 (patch) | |
tree | b039a667deb8ce9e37cacb6ee759a18aec41e44a /.github | |
parent | fix: symbol export headers relative path (diff) | |
download | GpgFrontend-8e99ff11a60b5e4686776fba39709bee22d96b92.tar.gz GpgFrontend-8e99ff11a60b5e4686776fba39709bee22d96b92.zip |
fix: build pipeline
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/codeql-analysis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index b1a100eb..dcff8c03 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -85,6 +85,7 @@ jobs: - name: Build mimalloc (Linux) run: | + git clone --depth 1 --branch v2.1.7 https://github.com/microsoft/mimalloc.git ${{github.workspace}}/third_party/mimalloc cd ${{github.workspace}}/third_party/mimalloc mkdir build && cd build cmake -G Ninja -DMI_SECURE=ON .. @@ -93,6 +94,7 @@ jobs: - name: Build googletest (Linux) run: | + git clone --depth 1 --branch v1.15.0 https://github.com/google/googletest.git ${{github.workspace}}/third_party/googletest cd ${{github.workspace}}/third_party/googletest mkdir build && cd build cmake -G Ninja -DBUILD_SHARED_LIBS=ON .. |