Skip to content
This repository was archived by the owner on Feb 12, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ set -ex
IMAGE="quay.io/cloudservices/mocks"
IMAGE_TAG=$(git rev-parse --short=7 HEAD)


if [[ -z "$QUAY_USER" || -z "$QUAY_TOKEN" ]]; then
echo "QUAY_USER and QUAY_TOKEN must be set"
exit 1
Expand Down
9 changes: 7 additions & 2 deletions pr_check.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
export IMAGE="quay.io/cloudservices/mocks" # the image location on quay
#!/bin/bash

export IMAGE="quay.io/cloudservices/mocks" # the image location on quay
export BONFIRE_REPO_ORG="mjholder"
export CICD_REPO_ORG="mjholder"
export BONFIRE_REPO_BRANCH="cleanup-tooling"
export CICD_REPO_BRANCH="cleanup-tooling"
# Install bonfire repo/initialize
CICD_URL=https://raw.githubusercontent.com/RedHatInsights/bonfire/master/cicd
CICD_URL=https://raw.githubusercontent.com/mjholder/bonfire/cleanup-tooling/cicd
curl -sS $CICD_URL/bootstrap.sh -o $WORKSPACE/.cicd_bootstrap.sh && source $WORKSPACE/.cicd_bootstrap.sh

# Build the image and push to quay
Expand Down