Skip to content
This repository was archived by the owner on Feb 12, 2026. It is now read-only.
Open
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
9 changes: 7 additions & 2 deletions pr_check.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
#!/bin/bash

export IMAGE="quay.io/cloudservices/mocks" # the image location on quay

# Install bonfire repo/initialize
CICD_URL=https://raw.githubusercontent.com/RedHatInsights/bonfire/master/cicd
curl -sS $CICD_URL/bootstrap.sh -o $WORKSPACE/.cicd_bootstrap.sh && source $WORKSPACE/.cicd_bootstrap.sh
BONFIRE_BRANCH=refactor-bootstrap
BONFIRE_ORG=Victoremepunto
CICD_SCRIPT_URL="https://raw.githubusercontent.com/${BONFIRE_ORG}/bonfire/${BONFIRE_BRANCH}/cicd/bootstrap.sh"
source <(curl -sSL "$CICD_SCRIPT_URL")

# Build the image and push to quay
source $CICD_ROOT/build.sh


# Test that the deployment works
source ${CICD_ROOT}/_common_deploy_logic.sh
export NAMESPACE=$(bonfire namespace reserve)
Expand Down