forked from RedHatInsights/ros-ocp-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpr_check.sh
executable file
·32 lines (24 loc) · 1.14 KB
/
pr_check.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
# --------------------------------------------
# Options that must be configured by app owner
# --------------------------------------------
export APP_NAME="ros" # name of app-sre "application" folder this component lives in
export COMPONENT_NAME="kruize ros-ocp-backend" # name of app-sre "resourceTemplate" in deploy.yaml for this component
export COMPONENTS="kruize ros-ocp-backend"
export IMAGE="quay.io/cloudservices/ros-ocp-backend"
export DOCKERFILE="Dockerfile"
export IQE_PLUGINS="ros_ocp"
export IQE_MARKER_EXPRESSION="smoke"
export IQE_FILTER_EXPRESSION=""
export IQE_CJI_TIMEOUT="30m"
# Install bonfire repo/initialize
CICD_URL=https://raw.githubusercontent.com/RedHatInsights/bonfire/master/cicd
curl -s $CICD_URL/bootstrap.sh > .cicd_bootstrap.sh && source .cicd_bootstrap.sh
source $CICD_ROOT/build.sh
# Deploy to an ephemeral namespace for testing
source $CICD_ROOT/deploy_ephemeral_env.sh
# Run iqe-ros-ocp smoke tests with ClowdJobInvocation
export COMPONENT_NAME="ros-ocp-backend"
source $CICD_ROOT/cji_smoke_test.sh
# This will add the Ibutsu URL and test run IDs as a git check on PRs.
source $CICD_ROOT/post_test_results.sh