-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Fork Github PR builds to separate spec (#2740)
Instead of trying to use one single spec that achieves both releasable builds as well as PR builds, use a different buildspec file for each, so the PR builds can be made more efficient.
- Loading branch information
1 parent
ff0ef73
commit 0e101d5
Showing
2 changed files
with
14 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: 0.2 | ||
|
||
# This buildspec is intended to be used by GitHub PR builds. | ||
|
||
phases: | ||
install: | ||
commands: | ||
- /bin/bash ./install.sh | ||
build: | ||
commands: | ||
- /bin/bash ./build.sh |
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