-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use bootstrap structure with current pipeline
- Loading branch information
Showing
8 changed files
with
35 additions
and
63 deletions.
There are no files selected for viewing
File renamed without changes.
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,9 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
export DEV=true | ||
export EXTERNAL=true | ||
export SNAPSHOT=true | ||
export PLATFORMS=linux/amd64,linux/arm64 | ||
export PACKAGES=tar.gz |
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,24 @@ | ||
#!/usr/bin/env bash | ||
set -euxo pipefail | ||
|
||
.buildkite/scripts/bootstrap.sh | ||
|
||
source .buildkite/scripts/steps/tests/env.sh | ||
|
||
# Install mage | ||
make mage | ||
|
||
# PACKAGE | ||
mage package | ||
|
||
# Run integration tests | ||
set +e | ||
mage integration:test | ||
TESTS_EXIT_STATUS=$? | ||
set -e | ||
|
||
# HTML report | ||
go install github.com/alexec/junit2html@latest | ||
junit2html < build/TEST-go-integration.xml > build/TEST-report.html | ||
|
||
exit $TESTS_EXIT_STATUS |