Skip to content

Commit 8a35098

Browse files
committed
Merge remote-tracking branch 'MLton.mlton.git/master' into upstream-merge
2 parents dfddbd5 + 8857346 commit 8a35098

File tree

464 files changed

+62884
-17233
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

464 files changed

+62884
-17233
lines changed

.gitignore

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1+
/boot/
12
/build/
23
/install/
3-
4-
# created by a failed build
5-
/tmp*
4+
mlton-*.tgz

.travis.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
language: shell
2+
os: linux
3+
arch: amd64
4+
5+
addons:
6+
apt:
7+
packages: mlton
8+
homebrew:
9+
packages: mlton
10+
11+
jobs:
12+
include:
13+
- os: linux
14+
dist: bionic
15+
arch: amd64
16+
env: CC=gcc MLTON_COMPILE_ARGS="-codegen amd64" REGRESSION=true
17+
- os: linux
18+
dist: bionic
19+
arch: amd64
20+
env: CC=gcc MLTON_COMPILE_ARGS="-codegen c" REGRESSION=false
21+
- os: linux
22+
dist: bionic
23+
arch: amd64
24+
env: CC=clang MLTON_COMPILE_ARGS="-codegen c" REGRESSION=false
25+
- os: linux
26+
dist: bionic
27+
arch: amd64
28+
env: CC=clang MLTON_COMPILE_ARGS="-codegen llvm" REGRESSION=false
29+
- os: osx
30+
osx_image: xcode11
31+
arch: amd64
32+
env: CC=clang MLTON_COMPILE_ARGS="-codegen amd64" REGRESSION=false
33+
- os: osx
34+
osx_image: xcode11
35+
arch: amd64
36+
env: CC=clang MLTON_COMPILE_ARGS="-codegen c" REGRESSION=false
37+
38+
script:
39+
- ./bin/travis-ci
40+
41+
notifications:
42+
email: false

0 commit comments

Comments
 (0)