Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haiku/infrastructure
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 96e28e57054d
Choose a base ref
...
head repository: haiku/infrastructure
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ba585e570554
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jun 20, 2021

  1. Copy the full SHA
    ba585e5 View commit details
Showing with 6 additions and 6 deletions.
  1. +2 −2 concourse/apply-pipeline.sh
  2. +4 −4 concourse/deploy.sh
4 changes: 2 additions & 2 deletions concourse/apply-pipeline.sh
Original file line number Diff line number Diff line change
@@ -29,13 +29,13 @@ if [ $? -ne 0 ]; then
exit 1
fi

if [ $BRANCH == "r1beta1" ]; then
if [ $BRANCH == "r1beta2" ]; then
BUCKET_IMAGE="haiku-release-candidates"
BUCKET_REPO="haiku-repositories-us"
BRANCH_PROFILE="release"
ARCHES="x86_64 x86_gcc2h"
DAYS="Sunday"
elif [ $BRANCH == "r1beta2" ]; then
elif [ $BRANCH == "r1beta3" ]; then
BUCKET_IMAGE="haiku-release-candidates"
BUCKET_REPO="haiku-repositories-us"
BRANCH_PROFILE="release"
8 changes: 4 additions & 4 deletions concourse/deploy.sh
Original file line number Diff line number Diff line change
@@ -26,10 +26,10 @@ fly -t haiku set-team -n continuous --github-team=haiku:infrastructure --non-int
fly -t haiku set-team -n nightly --github-team=haiku:infrastructure --non-interactive
./apply-pipeline.sh nightly master $1

## r1beta1 team. Builds released weekly. Artifacts pushed to release buckets
fly -t haiku set-team -n r1beta1 --github-team=haiku:infrastructure --non-interactive
./apply-pipeline.sh r1beta1 r1beta1 $1

## r1beta2 team. Builds released weekly. Artifacts pushed to release buckets
fly -t haiku set-team -n r1beta2 --github-team=haiku:infrastructure --non-interactive
./apply-pipeline.sh r1beta2 r1beta2 $1

## r1beta3 team. Builds released twice weekly. Artifacts pushed to release buckets
fly -t haiku set-team -n r1beta3 --github-team=haiku:infrastructure --non-interactive
./apply-pipeline.sh r1beta3 r1beta3 $1