forked from yewstack/yew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
46 lines (38 loc) · 956 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
branches:
only:
- staging
- trying
- master
dist: trusty
language: rust
sudo: false
addons:
firefox: latest
cache: cargo
before_cache:
- ./ci/clear_cache.sh
rust:
- 1.42.0 # min supported
- stable
- beta
services:
- docker
matrix:
allow_failures:
- rust: beta
fast_finish: true
before_install:
- docker run -d -p 8000:80 kennethreitz/httpbin@sha256:599fe5e5073102dbb0ee3dbb65f049dab44fa9fc251f6835c9990f8fb196a72b
install:
- nvm install 9
- rustup component add rustfmt
- rustup component add clippy
- rustup install stable
- rustup target add wasm32-unknown-unknown
- cargo +stable install wasm-bindgen-cli
- curl --retry 5 -LO https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodriver-v0.26.0-linux64.tar.gz
- tar -xzf geckodriver-v0.26.0-linux64.tar.gz
- ./ci/install_cargo_web.sh
script:
- ./ci/run_stable_checks.sh
- GECKODRIVER=$(pwd)/geckodriver ./ci/run_tests.sh