Skip to content

Commit 8dc28e9

Browse files
committed
fix: Windows CI error, need to install vcpkg
1 parent 49b2bcd commit 8dc28e9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ jobs:
6464
sudo apt-get update
6565
sudo apt-get install -y dart curl build-essential libsqlite3-dev libssl-dev clang cmake ninja-build pkg-config libgtk-3-dev
6666
sudo apt-get install keybinder-3.0
67+
elif [ "$RUNNER_OS" == "Windows" ]; then
68+
vcpkg integrate install
6769
elif [ "$RUNNER_OS" == "macOS" ]; then
6870
echo 'do nothing'
6971
fi
@@ -87,7 +89,7 @@ jobs:
8789
flutter config --enable-linux-desktop
8890
elif [ "$RUNNER_OS" == "macOS" ]; then
8991
flutter config --enable-macos-desktop
90-
elif [ "$RUNNER_OS" == "windows" ]; then
92+
elif [ "$RUNNER_OS" == "Windows" ]; then
9193
flutter config --enable-windows-desktop
9294
fi
9395
shell: bash

0 commit comments

Comments
 (0)