-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
32 lines (28 loc) · 900 Bytes
/
.travis.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
language: rust
cache: cargo
rust:
- stable
matrix:
include:
# Linux 64bit
- env: TARGET=x86_64-unknown-linux-gnu
os: linux
install:
- rustup self update
- rustup target add $TARGET; true
script:
- chmod +x ./ci/install_cargo_web.sh
- ./ci/install_cargo_web.sh
- cargo test --target $TARGET --verbose --release
- cargo web build --example alpha --release
- cargo web build --example basic --release
- cargo web build --example blit --release
- cargo web build --example demo --release
- cargo web build --example exit --release
- cargo web build --example fonts --release
- cargo web build --example image --release
- cargo web build --example perf --release
- cargo web build --example resize --release
- cargo web build --example subcell --release
- cargo web build --example text_input --release
- cargo web build --example unicode --release