Skip to content

Commit efc9915

Browse files
Update CI to use sufficiently new versions of Flutter
1 parent 3e2aa51 commit efc9915

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ image: Visual Studio 2017
1717
platform: x64
1818

1919
install:
20-
- ps: build\ci\install_flutter.ps1 $env:APPVEYOR_BUILD_FOLDER\..
20+
# None of the packaged channels are new enough for the current state
21+
# of FDE, so for now clone master instead.
22+
#- ps: build\ci\install_flutter.ps1 $env:APPVEYOR_BUILD_FOLDER\..
23+
- git clone -b master https://github.com/flutter/flutter.git %APPVEYOR_BUILD_FOLDER%\..\flutter
2124

2225
build_script:
2326
- msbuild "example\windows_fde\Example Embedder.sln"

build/ci/install_flutter

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
set -e
1818

19-
readonly CHANNEL="stable"
20-
readonly VERSION="1.0.0"
19+
readonly CHANNEL="dev"
20+
readonly VERSION="1.1.8"
2121

2222
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
2323
readonly FLUTTER_OS="linux"

0 commit comments

Comments
 (0)