-
Notifications
You must be signed in to change notification settings - Fork 124
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 #16 from Michkov/task-bundles
Task bundles and release
- Loading branch information
Showing
34 changed files
with
413 additions
and
402 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
./pipelines/dev-build.sh | ||
(cd ./tasks/appstudio-utils; ./dev-build.sh) | ||
#!/bin/bash | ||
|
||
export BUILD_TAG=$1 | ||
|
||
if [ -z "$MY_QUAY_USER" ]; then | ||
echo "MY_QUAY_USER environment variable must be set" | ||
exit 1 | ||
fi | ||
if [ "$MY_QUAY_USER" = "redhat-appstudio" ]; then | ||
echo "Cannot use devmode as redhat-appstudio user " | ||
exit 1 | ||
fi | ||
if [ -z "$BUILD_TAG" ]; then | ||
export BUILD_TAG=$(date +"%Y-%m-%d-%H%M%S") | ||
fi | ||
|
||
./tasks/appstudio-utils/dev-build.sh | ||
./pipelines/dev-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,3 @@ | ||
# build-definitions | ||
|
||
This directory the OCI bundle with default pipelines installed for build-definitions. | ||
|
||
Update `pipelines/release-build.sh` to set the release tag to a specific version. | ||
|
||
Currently set manually (v0.1, v0.1.1), but when integrated into a CI, will shift to use git commit SHA. | ||
|
||
This has to be updated on the infra-deployment cluster when the version is updated. | ||
|
||
|
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
Oops, something went wrong.