Skip to content

Commit

Permalink
fix: solve some known issues at ci build configs
Browse files Browse the repository at this point in the history
  • Loading branch information
saturneric committed Jul 29, 2024
1 parent ee623e4 commit 8f1edf2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release-qt5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8f1edf2

Please sign in to comment.