aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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