-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
65 lines (55 loc) · 1.13 KB
/
.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
language: sh
dist: focal
sudo: required
before_install:
- sudo apt-get update
jobs:
include:
- stage: bucklescript
script: |
cd bs
sudo apt-get install -y npm
./setup.sh
./build.sh
- stage: ocaml
script: |
cd ocaml
./setup.sh
bash -ex .travis-ocaml.sh
opam switch create 4.11.0 && eval $(opam env) && sh setup-opam
dune build src/dance.exe
- stage: labltk
script: |
cd labltk
./setup.sh
bash -ex .travis-ocaml.sh
opam switch create 4.11.0 && eval $(opam env) && sh setup-opam
dune build src/dance.exe
- stage: lablgtk
script: |
cd lablgtk
./setup.sh
bash -ex .travis-ocaml.sh
opam switch create 4.11.0 && eval $(opam env) && sh setup-opam
dune build src/dance.exe
- stage: python
script: |
cd python
./setup.sh
./run.sh
- stage: scalajs
script: |
cd scalajs
sh setup.sh
sbt fastOptJS
- stage: java
script: |
cd java
./gradlew build
env:
# only for ocaml
- OCAML_VERSION=4.11
- TRAVIS_DIST=focal
os:
- linux
# - osx