forked from rust-native-ui/libui-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
78 lines (69 loc) · 2.81 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
image: Visual Studio 2017
environment:
RUSTFLAGS: -Ctarget-feature=+crt-static
matrix:
- TARGET: x86_64-pc-windows-msvc
ALLOW_PR: 1
- TARGET: i686-pc-windows-msvc
BUILD_MSI: 1
ALLOW_PR: 1
- TARGET: i686-pc-windows-gnu
MINGW_DIR: mingw32
ALLOW_PR: 1
- TARGET: x86_64-pc-windows-gnu
MINGW_DIR: mingw64
ALLOW_PR: 1
access_token:
secure: q8Wqx0brgfpOYFQqWauvucE2h0o1WYb41a3gKaCKV9QiE4eTz6qLNlqyC3mdsp4Q
branches:
only:
- trunk
- auto
install:
# If this is a PR and we're not allowed to test PRs, skip the whole build.
# Also if we're on the trunk branch no need to run the full test suite, so
# just do a smoke test.
- if defined APPVEYOR_PULL_REQUEST_NUMBER if NOT defined ALLOW_PR appveyor exit
- if "%APPVEYOR_REPO_BRANCH%" == "trunk" if NOT defined ALLOW_PR appveyor exit
# Install MSYS2 and MINGW (32-bit & 64-bit)
- ps: |
# Check if MSYS2 was restored from cache
if($env:MINGW_DIR) {
if($env:MINGW_DIR -eq "mingw32") {
# Download and install MINGW (32-bit)
Write-Host "Installing MinGW (32-bit)..." -ForegroundColor Cyan
Write-Host "Downloading installation package..."
appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z -FileName mingw.7z
} elseif($env:MINGW_DIR -eq "mingw64") {
# Download and install MINGW (64-bit)
Write-Host "Installing MinGW (64-bit)..." -ForegroundColor Cyan
Write-Host "Downloading installation package..."
appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z -FileName mingw.7z
}
Write-Host "Extracting installation package..."
7z x -y mingw.7z -oC:\msys64 | Out-Null
del mingw.7z
} else {
Write-Host "MSYS2 not required" -ForegroundColor Green
}
# Install rust, x86_64-pc-windows-msvc host
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -y --default-host=x86_64-pc-windows-msvc --default-toolchain=1.40.0
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
# Install the target we're compiling for
- if NOT "%TARGET%" == "x86_64-pc-windows-msvc" rustup target add %TARGET%
# add mingw to PATH if necessary
- if defined MINGW_DIR set PATH=C:\msys64\%MINGW_DIR%\bin;C:\msys64\usr\bin;%PATH%
# set cargo features for MSI if requested (otherwise empty string)
- set FEATURES=
- if defined BUILD_MSI set FEATURES=--features msi-installed
# let's see what we got
- where gcc rustc cargo
- rustc -vV
- cargo -vV
build: false
test_script:
- cd ui-sys
- cargo build --verbose --tests --examples
- cd ../iui
- cargo build --verbose --tests --examples # make sure all examples can be build.