aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDJMcNab <[email protected]>2018-12-29 10:31:20 +0000
committerDJMcNab <[email protected]>2018-12-29 10:31:20 +0000
commit5dbab814813134f45ba186819bc81b822e62d9fb (patch)
tree5ec1c61d3870cf8c12c70ce3d39cb60550f46071 /.travis.yml
parentf4364993f937201ad258c38b04d54b9b5b007b81 (diff)
Reformat .travis.yml (using the vscode prettier extension)
TODO: Check this on CI. Maybe we should change the prettier script in `editors/code`, or move it to somewhere else (`tests/format` maybe) Editing the script in editors/code would be easiest as that means we don't have to double install some shared `node_modules`
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml70
1 files changed, 35 insertions, 35 deletions
diff --git a/.travis.yml b/.travis.yml
index bd15d39c1..a9e4d43b6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,47 +1,47 @@
1cache: cargo 1cache: cargo
2before_cache: 2before_cache:
3 - find ./target/debug -type f -maxdepth 1 -delete 3 - find ./target/debug -type f -maxdepth 1 -delete
4 - rm -fr ./target/debug/{deps,.fingerprint}/{*ra_*,*test*,*tools*,*gen_lsp*,*thread_worker*} 4 - rm -fr ./target/debug/{deps,.fingerprint}/{*ra_*,*test*,*tools*,*gen_lsp*,*thread_worker*}
5 - rm -f ./target/.rustc_info.json 5 - rm -f ./target/.rustc_info.json
6 6
7env: 7env:
8 - CARGO_INCREMENTAL=0 8 - CARGO_INCREMENTAL=0
9 9
10build: &rust_build 10build: &rust_build
11 language: rust 11 language: rust
12 rust: 1.31.1 12 rust: 1.31.1
13 script: 13 script:
14 - cargo gen-tests --verify 14 - cargo gen-tests --verify
15 - cargo gen-syntax --verify 15 - cargo gen-syntax --verify
16 - RUSTFLAGS='-D warnings' cargo test 16 - RUSTFLAGS='-D warnings' cargo test
17 env: 17 env:
18 RUSTFLAGS: '-D warnings' 18 RUSTFLAGS: -D warnings
19 19
20matrix: 20matrix:
21 include: 21 include:
22 - os: linux 22 - os: linux
23 <<: *rust_build 23 <<: *rust_build
24 - language: node_js 24 - language: node_js
25 node_js: node 25 node_js: node
26 before_script: false 26 before_script: false
27 script: 27 script:
28 - cd editors/code && npm ci && npm run travis 28 - cd editors/code && npm ci && npm run travis
29 29
30 - os: windows 30 - os: windows
31 if: branch = master 31 if: branch = master
32 before_script: 32 before_script:
33 - dos2unix ./crates/ra_syntax/tests/data/parser/**/*.txt 33 - dos2unix ./crates/ra_syntax/tests/data/parser/**/*.txt
34 - dos2unix ./crates/ra_syntax/tests/data/parser/**/*.rs 34 - dos2unix ./crates/ra_syntax/tests/data/parser/**/*.rs
35 <<: *rust_build 35 <<: *rust_build
36 36
37 allow_failures: 37 allow_failures:
38 # Because Travis-Windows-Rust can be flaky 38 # Because Travis-Windows-Rust can be flaky
39 # We still support Windows and want the tests to be succeeding, 39 # We still support Windows and want the tests to be succeeding,
40 # but there are too many spurious failures 40 # but there are too many spurious failures
41 - os: windows 41 - os: windows
42 42
43branches: 43branches:
44 only: 44 only:
45 - staging 45 - staging
46 - master 46 - master
47 - trying 47 - trying