-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpr_check.sh
executable file
·67 lines (55 loc) · 2.75 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
# Copyright 2023 Red Hat, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# --------------------------------------------
# Options that must be configured by app owner
# --------------------------------------------
APP_NAME="ccx-data-pipeline" # name of app-sre "application" folder this component lives in
COMPONENT_NAME="insights-results-aggregator-exporter" # name of app-sre "resourceTemplate" in deploy.yaml for this component
IMAGE="quay.io/cloudservices/insights-results-aggregator-exporter"
COMPONENTS="insights-results-aggregator-exporter ccx-notification-service ccx-notification-db-cleaner" # space-separated list of components to laod
COMPONENTS_W_RESOURCES="insights-results-aggregator-exporter" # component to keep
CACHE_FROM_LATEST_IMAGE="true"
# Set the correct images for pull requests.
# pr_check in pull requests still uses the old cloudservices images
EXTRA_DEPLOY_ARGS="--set-parameter insights-results-aggregator-exporter/IMAGE=quay.io/cloudservices/insights-results-aggregator-exporter"
export IQE_PLUGINS="ccx"
export IQE_MARKER_EXPRESSION=""
# Workaround: There are no cleaner specific integration tests. Check that the service loads and iqe plugin works.
export IQE_FILTER_EXPRESSION="test_plugin_accessible"
export IQE_REQUIREMENTS_PRIORITY=""
export IQE_TEST_IMPORTANCE=""
export IQE_CJI_TIMEOUT="30m"
# Temporary stub
mkdir artifacts
echo '<?xml version="1.0" encoding="utf-8"?><testsuites><testsuite name="pytest" errors="0" failures="0" skipped="0" tests="1" time="0.014" timestamp="2021-05-13T07:54:11.934144" hostname="thinkpad-t480s"><testcase classname="test" name="test_stub" time="0.000" /></testsuite></testsuites>' > artifacts/junit-stub.xml
# TODO: Uncomment when there is any test
# function build_image() {
# source $CICD_ROOT/build.sh
# }
# function deploy_ephemeral() {
# source $CICD_ROOT/deploy_ephemeral_env.sh
# }
# function run_smoke_tests() {
# source $CICD_ROOT/cji_smoke_test.sh
# }
# # 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
# echo "creating PR image"
# build_image
# echo "deploying to ephemeral"
# deploy_ephemeral
# echo "running PR smoke tests"
# run_smoke_tests