Skip to content
Snippets Groups Projects
Commit 605ae8dd authored by Mark Karpov's avatar Mark Karpov Committed by Ben Gamari
Browse files

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.
parent 7bd7fecb
No related branches found
No related tags found
No related merge requests found
...@@ -31,10 +31,10 @@ EOF ...@@ -31,10 +31,10 @@ EOF
;; ;;
"test") "test")
make test THREADS=$THREADS
make binary-dist make binary-dist
curl https://ghc-artifacts.s3.amazonaws.com/tools/ghc-artifact-collector-x86_64-windows --output ghc-artifact-collector curl https://ghc-artifacts.s3.amazonaws.com/tools/ghc-artifact-collector-x86_64-windows --output ghc-artifact-collector
./ghc-artifact-collector *.tar.xz ./ghc-artifact-collector *.tar.xz
make test THREADS=$THREADS
;; ;;
*) *)
......
...@@ -96,9 +96,9 @@ jobs: ...@@ -96,9 +96,9 @@ jobs:
- *boot - *boot
- *configure_unix - *configure_unix
- *make - *make
- *test
- *bindist - *bindist
- *storeartifacts - *storeartifacts
- *test
"validate-x86_64-freebsd": "validate-x86_64-freebsd":
resource_class: xlarge resource_class: xlarge
...@@ -115,9 +115,9 @@ jobs: ...@@ -115,9 +115,9 @@ jobs:
- *boot - *boot
- *configure_bsd - *configure_bsd
- *make - *make
- *test
- *bindist - *bindist
- *storeartifacts - *storeartifacts
- *test
"validate-x86_64-darwin": "validate-x86_64-darwin":
macos: macos:
...@@ -136,9 +136,9 @@ jobs: ...@@ -136,9 +136,9 @@ jobs:
- *boot - *boot
- *configure_unix - *configure_unix
- *make - *make
- *test
- *bindist - *bindist
- *storeartifacts - *storeartifacts
- *test
"validate-hadrian-x86_64-linux": "validate-hadrian-x86_64-linux":
resource_class: xlarge resource_class: xlarge
...@@ -224,9 +224,9 @@ jobs: ...@@ -224,9 +224,9 @@ jobs:
- *boot - *boot
- *configure_unix_32 - *configure_unix_32
- *make - *make
- *test
- *bindist - *bindist
- *storeartifacts - *storeartifacts
- *test
"validate-x86_64-fedora": "validate-x86_64-fedora":
resource_class: xlarge resource_class: xlarge
...@@ -242,9 +242,9 @@ jobs: ...@@ -242,9 +242,9 @@ jobs:
- *boot - *boot
- *configure_unix - *configure_unix
- *make - *make
- *test
- *bindist - *bindist
- *storeartifacts - *storeartifacts
- *test
workflows: workflows:
version: 2 version: 2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment