-
Notifications
You must be signed in to change notification settings - Fork 284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run post-deployment test using deployed artifacts #1372
Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
57cd110
Initial package
PhilWindle 3ab0696
Test passing
PhilWindle d559fe2
Merge branch 'master' into pw/ci-deployed-artifacts
PhilWindle 2d05c55
Merge fix
PhilWindle 4cceebc
WIP
PhilWindle f0148a8
WIP
PhilWindle 80637cf
WIP
PhilWindle 8b3daa2
Merge branch 'master' into pw/ci-deployed-artifacts
PhilWindle 6fa8695
WIP
PhilWindle ed1b63c
WIP
PhilWindle 63c3004
WIP
PhilWindle fc802bb
Build and readme fix
PhilWindle fe144d5
WIP
PhilWindle 0fa30d5
This run should pass
PhilWindle 87ceca5
Merge branch 'master' into pw/ci-deployed-artifacts
PhilWindle 380e2a3
Add force build option
PhilWindle d156be9
Temp debugging
PhilWindle 92b4fc5
Fixed build error
PhilWindle f6ed67e
More build fixes
PhilWindle c6c849b
Removed debug
PhilWindle 22b0462
Merge branch 'master' into pw/ci-deployed-artifacts
PhilWindle 893b0cf
Only run on tagged builds
PhilWindle 6c6550d
Formatting error
PhilWindle 0933db1
Cleanup
PhilWindle 8e9c663
Make sure we build with latest deps
PhilWindle c64cfd9
Merge branch 'master' into pw/ci-deployed-artifacts
PhilWindle 61a7d55
Removed tsbuildinfo
PhilWindle e51f3c1
Added git ignore file
PhilWindle a9b7b67
Set dependencies to deployed version
PhilWindle 13492b3
Build fix
PhilWindle 75d4b3b
Fixes
PhilWindle 23e6b76
Updated readme
PhilWindle b020af7
Test for invalid commit tag
PhilWindle 98a0e67
Re-instate branch filters
PhilWindle ced61d0
Fixed nargo files
PhilWindle File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,15 @@ | ||
#!/bin/bash | ||
set -e | ||
SCRIPT_PATH=$1 | ||
REPOSITORY=$2 | ||
shift | ||
shift | ||
|
||
init_submodules $REPOSITORY | ||
|
||
cd $(query_manifest projectDir $REPOSITORY) | ||
|
||
mkdir -p /tmp/test-logs | ||
|
||
set -o pipefail | ||
spot_run_script 32 $SCRIPT_PATH $@ | tee "/tmp/test-logs/$JOB_NAME.log" |
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,4 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
spot_run_test_script ./scripts/run_tests $@ |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these happening on every build? Or should we set them up to run only on tagged releases?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They only run on tagged releases. The spec for that is further down the file.