aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-07-30 15:49:49 +0000
committersaturneric <[email protected]>2024-07-30 15:49:49 +0000
commit0b8da5767ec709f5ea1e1e1fc502715ab6280aa2 (patch)
tree35de8fffd1525f0adff8794cf07e5ee1e7a7628c /.github
parentfix: should add find package GTest (diff)
downloadGpgFrontend-0b8da5767ec709f5ea1e1e1fc502715ab6280aa2.tar.gz
GpgFrontend-0b8da5767ec709f5ea1e1e1fc502715ab6280aa2.zip
fix: remove googletest, libarchive and mimalloc source code from repo
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 18d41b8c..19e098ae 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -162,11 +162,11 @@ jobs:
./autogen.sh
./configure --enable-maintainer-mode --enable-languages=cpp --disable-gpg-test && make -j4
make install
- cd ${{github.workspace}}
if: matrix.os == 'windows-2019'
- 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 ..
@@ -177,6 +177,7 @@ jobs:
- name: Build mimalloc (Windows)
shell: msys2 {0}
run: |
+ git clone --depth 1 --branch v2.1.7 https://github.com/microsoft/mimalloc.git ${{github.workspace}}/third_party/mimalloc
cd $(echo "/${{github.workspace}}" | sed 's/\\/\//g' | sed 's/://')
cd third_party/mimalloc
mkdir build && cd build
@@ -186,6 +187,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 ..