aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-07-29 17:11:45 +0000
committersaturneric <[email protected]>2024-07-29 17:11:45 +0000
commit8f1edf278a6e246a6ae15ec7765618c330c4c9e5 (patch)
treed36693d6d3d0b8d19e4cd010f8320bc0a9056d46
parentfix: remove add_subdirectory(googletest) (diff)
downloadGpgFrontend-8f1edf278a6e246a6ae15ec7765618c330c4c9e5.tar.gz
GpgFrontend-8f1edf278a6e246a6ae15ec7765618c330c4c9e5.zip
fix: solve some known issues at ci build configs
-rw-r--r--.github/workflows/release-qt5.yml3
-rw-r--r--.github/workflows/release.yml3
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/release-qt5.yml b/.github/workflows/release-qt5.yml
index 090e3c01..c0b18701 100644
--- a/.github/workflows/release-qt5.yml
+++ b/.github/workflows/release-qt5.yml
@@ -149,7 +149,8 @@ jobs:
- name: Build mimalloc (Windows)
shell: msys2 {0}
run: |
- cd ${{github.workspace}}/third_party/mimalloc
+ cd $(echo "/${{github.workspace}}" | sed 's/\\/\//g' | sed 's/://')
+ cd third_party/mimalloc
mkdir build && cd build
cmake -G Ninja -DMI_SECURE=ON ..
ninja
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2aa19efd..27d679be 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -177,7 +177,8 @@ jobs:
- name: Build mimalloc (Windows)
shell: msys2 {0}
run: |
- cd ${{github.workspace}}/third_party/mimalloc
+ cd $(echo "/${{github.workspace}}" | sed 's/\\/\//g' | sed 's/://')
+ cd third_party/mimalloc
mkdir build && cd build
cmake -G Ninja -DMI_SECURE=ON ..
ninja