-
Notifications
You must be signed in to change notification settings - Fork 87
143 lines (125 loc) · 4.66 KB
/
pr-builder.yml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: Pull Request
on:
pull_request:
branches:
- master
paths-ignore:
- '**.md'
- 'stable/hazelcast-platform-operator'
pull_request_target:
types: [labeled]
branches:
- master
paths-ignore:
- '**.md'
permissions:
contents: read
jobs:
tests:
if: >-
(github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name,'safe-to-test') && github.event.pull_request.head.repo.full_name != github.repository) ||
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
name: Run tests
runs-on: ubuntu-20.04
env:
KUBECTL_VERSION: 1.22.0
GCP_PROJECT_ID: hazelcast-33
GCP_NETWORK: operator-test-network
GKE_ZONE: europe-west1-b
AWS_REGION: us-east-1
steps:
- name: Decide which ref to checkout
id: decide-ref
run: |
if [[ "${{github.event_name}}" == "pull_request" ]]; then
echo "::set-output name=ref::${{github.ref}}"
else
echo "::set-output name=ref::refs/pull/${{ github.event.pull_request.number }}/merge"
fi
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{steps.decide-ref.outputs.ref}}
fetch-depth: 0
- name: Add remote hazelcast
run: |
git remote add hazelcast https://github.com/hazelcast/charts.git
git fetch hazelcast master
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v1.1.1
with:
project_id: ${{ env.GCP_PROJECT_ID }}
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ env.AWS_REGION }}
- name: Get Secrets
uses: aws-actions/aws-secretsmanager-get-secrets@v1
with:
secret-ids: |
GKE_SA_KEY,CN/GKE_SA_KEY
HZ_LICENSE_KEY,CN/HZ_LICENSE_KEY
- name: Authenticate to GCP
uses: 'google-github-actions/auth@v1.1.1'
with:
credentials_json: ${{ env.GKE_SA_KEY }}
- name: Set up Helm
uses: azure/setup-helm@v3.5
with:
version: v3.10.3
- uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.4.0
- name: Add values.yaml for testing
run: |
MODIFIED_CHARTS=( $(ct list-changed --config ${GITHUB_WORKSPACE}/test/ct.yaml ) )
for chart in "${MODIFIED_CHARTS[@]}"
do
if [ $chart == "stable/hazelcast" ]; then
mkdir -p ${GITHUB_WORKSPACE}/stable/hazelcast/ci
cat << EOF > ${GITHUB_WORKSPACE}/stable/hazelcast/ci/gha_gke-values.yaml
mancenter:
licenseKey: ${{ env.HZ_LICENSE_KEY }}
devMode:
enabled: true
javaOpts: "-Dhazelcast.mc.rest.enabled=true"
EOF
fi
if [ $chart == "stable/hazelcast-enterprise" ]; then
mkdir -p ${GITHUB_WORKSPACE}/stable/hazelcast-enterprise/ci
cat << EOF > ${GITHUB_WORKSPACE}/stable/hazelcast-enterprise/ci/gha_gke-values.yaml
hazelcast:
licenseKey: ${{ env.HZ_LICENSE_KEY }}
mancenter:
devMode:
enabled: true
javaOpts: "-Dhazelcast.mc.rest.enabled=true"
EOF
fi
done
- name: Lint Charts
run: |
ct lint --config ${GITHUB_WORKSPACE}/test/ct.yaml
- name: Create GKE cluster
run: |-
CLUSTER_NAME="charts-pr-test-${GITHUB_SHA::8}-${GITHUB_RUN_NUMBER}"
echo "CLUSTER_NAME=${CLUSTER_NAME}" >> $GITHUB_ENV
gcloud container clusters create ${CLUSTER_NAME} --zone=${{ env.GKE_ZONE }} --project=${{ env.GCP_PROJECT_ID }} --network=${{ env.GCP_NETWORK }} --machine-type=n1-standard-2 --num-nodes=2
sleep 30
- name: Connect to the GKE cluster
uses: 'google-github-actions/get-gke-credentials@v1'
with:
cluster_name: ${{ env.CLUSTER_NAME }}
project_id: ${{ env.GCP_PROJECT_ID }}
location: ${{ env.GKE_ZONE }}
- name: Test Charts
run: |
ct install --config ${GITHUB_WORKSPACE}/test/ct.yaml
- name: Delete GKE cluster
if: always()
run: |-
gcloud container clusters delete ${{ env.CLUSTER_NAME }} --zone ${{ env.GKE_ZONE }} --quiet