forked from compiler-explorer/compiler-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (31 loc) · 744 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
sudo: false
language: node_js
before_install:
- etc/scripts/travis.sh
node_js:
- "10"
before_script:
- export PATH=$PATH:$PWD/.travis-compilers/ghc/bin
- ghc --version
- export PATH=$PATH:$PWD/.travis-compilers/gdc/x86_64-pc-linux-gnu/bin
- gdc --version
- export PATH=$PATH:$PWD/.travis-compilers/rust/bin
- rustc --version
cache:
directories:
- .travis-compilers
script:
- yarn run check
- yarn run codecov
- make changelog
- make -j$(nproc) travis-dist
deploy:
on:
all_branches:
true
provider: s3
bucket: "compiler-explorer"
skip_cleanup: true
acl: public_read
local_dir: out/dist-bin
upload-dir: dist/travis/${TRAVIS_BRANCH}