forked from MLton/mlton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (38 loc) · 925 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
language: shell
os: linux
arch: amd64
addons:
apt:
packages: mlton
homebrew:
packages: mlton
jobs:
include:
- os: linux
dist: bionic
arch: amd64
env: CC=gcc MLTON_COMPILE_ARGS="-codegen amd64" REGRESSION=true
- os: linux
dist: bionic
arch: amd64
env: CC=gcc MLTON_COMPILE_ARGS="-codegen c" REGRESSION=false
- os: linux
dist: bionic
arch: amd64
env: CC=clang MLTON_COMPILE_ARGS="-codegen c" REGRESSION=false
- os: linux
dist: bionic
arch: amd64
env: CC=clang MLTON_COMPILE_ARGS="-codegen llvm" REGRESSION=false
- os: osx
osx_image: xcode11
arch: amd64
env: CC=clang MLTON_COMPILE_ARGS="-codegen amd64" REGRESSION=false
- os: osx
osx_image: xcode11
arch: amd64
env: CC=clang MLTON_COMPILE_ARGS="-codegen c" REGRESSION=false
script:
- ./bin/travis-ci
notifications:
email: false