Skip to content

Commit bc64335

Browse files
committed
Add appveyor (Windows) CI
1 parent 1f460d9 commit bc64335

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

appveyor.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
branches:
2+
only:
3+
- master
4+
5+
version: '1.0.{build}'
6+
7+
install:
8+
- ps: wget https://storage.googleapis.com/dart-archive/channels/dev/release/latest/sdk/dartsdk-windows-x64-release.zip -OutFile dart-sdk.zip
9+
- cmd: echo "Unzipping dart-sdk..."
10+
- cmd: 7z x dart-sdk.zip -o"C:\tools" -y > nul
11+
- set PATH=%PATH%;C:\tools\dart-sdk\bin
12+
- set PATH=%PATH%;%APPDATA%\Pub\Cache\bin
13+
- cd webdev
14+
- pub get && exit 0
15+
16+
build: off
17+
18+
test_script:
19+
- pub run test -j 1
20+
21+
cache:
22+
- C:\Users\appveyor\AppData\Roaming\Pub\Cache

0 commit comments

Comments
 (0)