Raymond Toy pushed to branch rtoy-refactor-ci-config at cmucl / cmucl
Commits:
-
08bbf9f9
by Raymond Toy at 2020-09-05T11:06:32-07:00
1 changed file:
Changes:
... | ... | @@ -49,6 +49,9 @@ linux:test: |
49 | 49 |
artifacts:
|
50 | 50 |
paths:
|
51 | 51 |
- ansi-test/test.out
|
52 |
+ needs:
|
|
53 |
+ - job: linux:build
|
|
54 |
+ artifacts: true
|
|
52 | 55 |
script:
|
53 | 56 |
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
|
54 | 57 |
- cd ansi-test
|
... | ... | @@ -62,6 +65,9 @@ linux:benchmark: |
62 | 65 |
artifacts:
|
63 | 66 |
paths:
|
64 | 67 |
- benchmarks/cl-bench/results
|
68 |
+ needs:
|
|
69 |
+ - job: linux:build
|
|
70 |
+ artifacts: true
|
|
65 | 71 |
script:
|
66 | 72 |
- cd ../benchmarks/cl-bench
|
67 | 73 |
- mkdir tmp
|
... | ... | @@ -105,6 +111,9 @@ osx:test: |
105 | 111 |
artifacts:
|
106 | 112 |
paths:
|
107 | 113 |
- ansi-test/test.out
|
114 |
+ needs:
|
|
115 |
+ - job: osx:build
|
|
116 |
+ artifacts: true
|
|
108 | 117 |
script:
|
109 | 118 |
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
|
110 | 119 |
- cd ansi-test
|
... | ... | @@ -118,6 +127,9 @@ osx:benchmark: |
118 | 127 |
artifacts:
|
119 | 128 |
paths:
|
120 | 129 |
- benchmarks/cl-bench/results
|
130 |
+ needs:
|
|
131 |
+ - job: osx:build
|
|
132 |
+ artifacts: true
|
|
121 | 133 |
script:
|
122 | 134 |
- cd ../benchmarks/cl-bench
|
123 | 135 |
- mkdir tmp
|