forked from GoogleCloudPlatform/spring-cloud-gcp
-
Notifications
You must be signed in to change notification settings - Fork 0
144 lines (141 loc) · 4.25 KB
/
integrationTests.yaml
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
144
name: Integration Tests
on:
push:
branches-ignore:
- 'dependabot/**'
workflow_dispatch:
schedule:
- cron: '05 8 * * *' # 08:00 UTC every day
jobs:
integrationTests:
if: github.repository == 'GoogleCloudPlatform/spring-cloud-gcp'
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
it:
- bigquery
- cloudsql
- config
- datastore
- firestore
- kms
- logging
- metrics
- multisample
- kotlin
- pubsub
- pubsub-bus
- pubsub-docs
- pubsub-emulator
- pubsub-integration
- secretmanager
- spanner
- storage
- trace
- vision
steps:
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d' --utc)"
- uses: actions/checkout@v2
- name: Setup Java 11
uses: actions/setup-java@v1
if: matrix.it != 'native'
with:
java-version: 11
- name: Setup GraalVM
uses: DeLaGuardo/setup-graalvm@4.0
if: matrix.it == 'native' # note that this is no longer in the matrix
with:
graalvm: '21.2.0'
java: 'java11'
arch: 'amd64'
- name: Install GraalVM Native Image
if: matrix.it == 'native'
run: gu install native-image
- uses: actions/cache@v2
id: mvn-cache
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-unified-${{ steps.date.outputs.date }}
- name: Setup gcloud
uses: google-github-actions/setup-gcloud@v0
with:
version: latest
project_id: spring-cloud-gcp-ci
service_account_key: ${{ secrets.SPRING_CLOUD_GCP_CI_SA_KEY }}
export_default_credentials: true
- name: Install pubsub-emulator
if: ${{ matrix.it == 'pubsub-emulator' }}
run: |
gcloud components install pubsub-emulator beta && \
gcloud components update
- name: Maven go offline
id: mvn-offline
if: steps.mvn-cache.outputs.cache-hit != 'true'
run: ./mvnw compile dependency:go-offline
- name: Mvn install # Need this when the directory/pom structure changes
id: install1
continue-on-error: true
run: |
./mvnw \
--batch-mode \
--threads 1.5C \
--define maven.test.skip=true \
--define maven.javadoc.skip=true \
install
- name: Retry install on failure
id: install2
if: steps.install1.outcome == 'failure'
run: |
./mvnw \
--batch-mode \
--threads 1.5C \
--define maven.test.skip=true \
--define maven.javadoc.skip=true \
install
- name: Wait our turn for running integration tests
uses: softprops/turnstyle@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
continue-after-seconds: 1200 # 30 min
same-branch-only: false
- name: Integration Tests
id: intTest1
continue-on-error: true
run: |
./mvnw \
--batch-mode \
--activate-profiles spring-cloud-gcp-ci-it \
--define maven.javadoc.skip=true \
--define skip.surefire.tests=true \
--define it.${{ matrix.it }}=true \
verify
- name: Retry on Failure
id: intTest2
if: steps.intTest1.outcome == 'failure'
run: |
./mvnw \
--batch-mode \
--activate-profiles spring-cloud-gcp-ci-it \
--define maven.javadoc.skip=true \
--define skip.surefire.tests=true \
--define it.${{ matrix.it }}=true \
verify
- name: Aggregate Report
run: |
./mvnw \
--batch-mode \
--define aggregate=true \
surefire-report:failsafe-report-only
- name: Archive logs
if: always()
continue-on-error: true
uses: actions/upload-artifact@v2
with:
name: Integration Test Logs - ${{ matrix.it}}
path: |
**/target/failsafe-reports/*
**/target/site