Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Prev Previous commit
Next Next commit
temporary job to inspect artifacts dir
  • Loading branch information
s3krit committed May 12, 2020
commit 516e0751186abd065b5e60d826cff37aed104c58
7 changes: 5 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,11 @@ build-linux-release: &build
- sccache -s




.publish-build: &publish-build
stage: publish
dependencies:
- build-linux-release
- build-wasm-release
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can artifacts be fetched that way from two different jobs which ran in parallel before?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, wasn't sure about this myself so I made a test job to verify it: https://gitlab.parity.io/parity/polkadot/-/jobs/507196

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice job!

cache: {}
<<: *build-refs
<<: *kubernetes-env
Expand All @@ -232,6 +231,10 @@ build-linux-release: &build
- EXTRATAG="$(cat ./artifacts/EXTRATAG)"
- echo "Polkadot version = ${VERSION} (EXTRATAG ${EXTRATAG})"

list-all-artifacts:
<<: *publish-build
script:
- find ./artifacts



Expand Down