Skip to content
This repository was archived by the owner on Nov 1, 2018. It is now read-only.

Commit 605ae8d

Browse files
mrkkrpbgamari
authored andcommitted
Run tests after artifact collection
Since for every job there are failing tests, if we try to upload artifacts after tests, we won't get any. As a temporary measure I suggest uploading artifacts before running tests. Once tests are fixed, we should peform artifact uploading after tests again.
1 parent 7bd7fec commit 605ae8d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.appveyor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ EOF
3131
;;
3232

3333
"test")
34-
make test THREADS=$THREADS
3534
make binary-dist
3635
curl https://ghc-artifacts.s3.amazonaws.com/tools/ghc-artifact-collector-x86_64-windows --output ghc-artifact-collector
3736
./ghc-artifact-collector *.tar.xz
37+
make test THREADS=$THREADS
3838
;;
3939

4040
*)

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ jobs:
9696
- *boot
9797
- *configure_unix
9898
- *make
99-
- *test
10099
- *bindist
101100
- *storeartifacts
101+
- *test
102102

103103
"validate-x86_64-freebsd":
104104
resource_class: xlarge
@@ -115,9 +115,9 @@ jobs:
115115
- *boot
116116
- *configure_bsd
117117
- *make
118-
- *test
119118
- *bindist
120119
- *storeartifacts
120+
- *test
121121

122122
"validate-x86_64-darwin":
123123
macos:
@@ -136,9 +136,9 @@ jobs:
136136
- *boot
137137
- *configure_unix
138138
- *make
139-
- *test
140139
- *bindist
141140
- *storeartifacts
141+
- *test
142142

143143
"validate-hadrian-x86_64-linux":
144144
resource_class: xlarge
@@ -224,9 +224,9 @@ jobs:
224224
- *boot
225225
- *configure_unix_32
226226
- *make
227-
- *test
228227
- *bindist
229228
- *storeartifacts
229+
- *test
230230

231231
"validate-x86_64-fedora":
232232
resource_class: xlarge
@@ -242,9 +242,9 @@ jobs:
242242
- *boot
243243
- *configure_unix
244244
- *make
245-
- *test
246245
- *bindist
247246
- *storeartifacts
247+
- *test
248248

249249
workflows:
250250
version: 2

0 commit comments

Comments
 (0)