File tree Expand file tree Collapse file tree 1 file changed +20
-10
lines changed Expand file tree Collapse file tree 1 file changed +20
-10
lines changed Original file line number Diff line number Diff line change @@ -17,24 +17,34 @@ matrix:
17
17
- g++-6
18
18
- zlib1g-dev
19
19
- valgrind
20
+ - ninja-build
21
+ - git
22
+
20
23
# OSX
21
24
- os : osx
22
25
allow_failures :
23
26
- os : osx
24
27
25
- install :
26
- # Build mrustc
27
- - make RUSTCSRC
28
- - make -j 2
29
- - make -C tools/minicargo
28
+ # install:
29
+ # Build mrustc
30
+ # - make RUSTCSRC
31
+ # - make -j 2
32
+ # - make -C tools/minicargo
30
33
31
34
script :
32
- - set -e
33
- - make -f minicargo.mk output/libtest.hir # libstd
34
- - make test # hello_world
35
+ - git status
36
+ # - set -e
37
+ - mkdir build
38
+ - cd build
39
+ - cmake ..
40
+ - make mrustc -j4
41
+ - make minicargo -j4
42
+ # Test
43
+ # - make -f minicargo.mk output/libtest.hir # libstd
44
+ # - make test # hello_world
35
45
# Tests
36
- - set +e
37
- - make local_tests -k
46
+ # - set +e
47
+ # - make local_tests -k
38
48
# - CC=gcc-6 make rust_tests -k
39
49
# rustc (DISABLED: llvm build)
40
50
# - make -f minicargo.mk output/rustc
You can’t perform that action at this time.
0 commit comments