Skip to content

Commit

Permalink
try to fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
ToKiNoBug committed Apr 2, 2024
1 parent c60a1ad commit 6209db7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ jobs:
- name: Install Qt
run: |
cmd
cd D:\a
curl -JL -o D:\a\Qt6.5.0-msvc-shared.7z "https://github.com/SlopeCraft/QtBinaries/releases/download/qt6.5.0-x86_64-msvc-windows/Qt6.5.0-msvc-shared.7z"
7z x -oD:\a\Qt6 D:\a\Qt6.5.0-msvc-shared.7z
tree /f D:\a\Qt6
curl -JL -o Qt6.5.0-msvc-shared.7z "https://github.com/SlopeCraft/QtBinaries/releases/download/qt6.5.0-x86_64-msvc-windows/Qt6.5.0-msvc-shared.7z"
7z x -oQt6 Qt6.5.0-msvc-shared.7z
tree /f Qt6
exit
- name: Install libzip
Expand All @@ -50,7 +49,7 @@ jobs:
choco install ninja
cargo install --path .
mkdir build
cmake -S ./tests -B ./build -DCMAKE_PREFIX_PATH=C:/vcpkg/installed/x64-windows;D:/a/Qt6 -DCMAKE_INSTALL_PREFIX=install
cmake -S ./tests -B ./build -DCMAKE_PREFIX_PATH=C:/vcpkg/installed/x64-windows;./Qt6 -DCMAKE_INSTALL_PREFIX=install
cmake --build ./build
cd ./build
cpack -G 7Z
Expand Down

0 comments on commit 6209db7

Please sign in to comment.