diff options
author | saturneric <[email protected]> | 2024-07-30 15:49:49 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-30 15:49:49 +0000 |
commit | 0b8da5767ec709f5ea1e1e1fc502715ab6280aa2 (patch) | |
tree | 35de8fffd1525f0adff8794cf07e5ee1e7a7628c /.github | |
parent | fix: should add find package GTest (diff) | |
download | GpgFrontend-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.yml | 4 |
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 .. |