forked from hazelcast/hazelcast
-
Notifications
You must be signed in to change notification settings - Fork 0
111 lines (101 loc) · 3.22 KB
/
gcp-terraform-integration-tests.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
name: gcp-test
on:
workflow_dispatch:
pull_request_target:
types:
- labeled
branches:
- "master"
- "*.z"
paths:
- 'hazelcast/src/main/java/com/hazelcast/gcp/**'
- '.github/terraform/gcp/**'
jobs:
build:
name: GCP Tests
defaults:
run:
shell: bash
env:
GCP_KEY_FILE: ${{ secrets.GCP_KEY_FILE }}
runs-on: ubuntu-latest
if: >-
github.repository_owner == 'hazelcast' &&
( github.event_name == 'workflow_dispatch' ||
(github.event_name == 'pull_request_target' &&
github.event.action == 'labeled' &&
github.event.label.name == 'run-discovery-tests'
)
)
steps:
- name: Setup JDK
uses: actions/[email protected]
with:
java-version: 11
architecture: x64
distribution: adopt
- name: Decide which ref to checkout
id: decide-ref
run: |
if [[ "${{github.event_name}}" == "pull_request_target" ]]; then
echo "ref=refs/pull/${{ github.event.pull_request.number }}/merge" >> $GITHUB_OUTPUT
else
echo "ref=${{github.ref}}" >> $GITHUB_OUTPUT
fi
- name: Checkout
uses: actions/[email protected]
with:
ref: ${{steps.decide-ref.outputs.ref}}
- name: Setup Local Maven Cache
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build hazelcast jar
run: |
./mvnw -T 4 -B -V -e clean package \
-Dfindbugs.skip \
-Dcheckstyle.skip \
-Dpmd.skip=true \
-Dspotbugs.skip \
-Denforcer.skip \
-Dmaven.javadoc.skip \
-DskipTests \
-Dlicense.skip=true \
-Drat.skip=true \
-Dspotless.check.skip=true \
-Dattribution.skip \
-Danimal.sniffer.skip=true \
-Dmaven.source.skip=true
echo "Hazelcast jar is: " hazelcast/target/hazelcast-*-SNAPSHOT.jar
cp hazelcast/target/hazelcast-*-SNAPSHOT.jar ~/hazelcast.jar
- name: Create GCP credentials file
run: |
touch gcp_key_file.json
echo $GCP_KEY_FILE > ~/gcp_key_file.json
- name : Set-up Terraform
uses: hashicorp/[email protected]
with:
terraform_version: 1.1.8
- name: Terraform Init
working-directory: .github/terraform/gcp
run: terraform init
- name: Terraform Apply
working-directory: .github/terraform/gcp
run: |
project_id=$(echo $GCP_KEY_FILE | grep -Po '"project_id":\s"\K[-a-zA-Z0-9]+')
terraform apply \
-var="hazelcast_mancenter_version=latest-snapshot" \
-var="hazelcast_path=~/hazelcast.jar" \
-var="gcp_key_file=~/gcp_key_file.json" \
-var="project_id=${project_id}" \
-auto-approve
- name: Terraform Destroy
if: ${{ always() }}
working-directory: .github/terraform/gcp
run: |
terraform destroy \
-auto-approve \
-var="gcp_key_file=~/gcp_key_file.json"