aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-07-31 06:50:07 +0000
committersaturneric <[email protected]>2024-07-31 06:50:07 +0000
commit8e99ff11a60b5e4686776fba39709bee22d96b92 (patch)
treeb039a667deb8ce9e37cacb6ee759a18aec41e44a /.github
parentfix: symbol export headers relative path (diff)
downloadGpgFrontend-8e99ff11a60b5e4686776fba39709bee22d96b92.tar.gz
GpgFrontend-8e99ff11a60b5e4686776fba39709bee22d96b92.zip
fix: build pipeline
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codeql-analysis.yml2
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 ..