-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3125 from oasisprotocol/ptrus/fix/longtests-artif…
…acts-upload ci: extract go artifacts upload code into a script
- Loading branch information
Showing
5 changed files
with
29 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
set -euxo pipefail | ||
|
||
pushd /workdir/go/oasis-node | ||
buildkite-agent artifact upload oasis-node | ||
buildkite-agent artifact upload oasis-node.test | ||
popd | ||
|
||
pushd /workdir/go/oasis-test-runner | ||
buildkite-agent artifact upload oasis-test-runner | ||
buildkite-agent artifact upload oasis-test-runner.test | ||
popd | ||
|
||
pushd /workdir/go/oasis-test-runner/scenario/pluginsigner/example_signer_plugin | ||
buildkite-agent artifact upload example_signer_plugin.so | ||
popd | ||
|
||
pushd /workdir/go/oasis-net-runner | ||
buildkite-agent artifact upload oasis-net-runner | ||
popd | ||
|
||
pushd /workdir/go/oasis-remote-signer | ||
buildkite-agent artifact upload oasis-remote-signer | ||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ci: Extract go artifacts upload code into a script |