-
Notifications
You must be signed in to change notification settings - Fork 325
159 lines (155 loc) · 4.85 KB
/
compatibilityCheck.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
name: Compatibility Check
on:
workflow_dispatch:
inputs:
mavenRepository:
description: 'URL of a Maven repository that holds dependencies to confirm'
required: true
type: string
mavenDependencies:
description: 'Key-value pairs of dependencies for Java'
required: true
type: string
schedule:
- cron: '05 8 * * *' # 08:00 UTC every day
jobs:
integrationTests:
name: Integration Tests for Compatibility Check
if: github.repository == 'suztomo/spring-cloud-gcp'
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
it:
- alloydb
- 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 "date=$(date +'%Y-%m-%d' --utc)" >> $GITHUB_OUTPUT
- uses: actions/checkout@v2
- name: Read inputs
run: |
echo "repo: $REPO"
echo "deps: $DEPS"
env:
REPO: ${{ inputs.mavenRepository }}
DEPS: ${{ inputs.mavenDependencies }}
- name: Force dependencies
run: |
echo "repo: $REPO"
echo $DEPS > /tmp/version_check_request.json
python3 util//force_depencencies.py $REPO /tmp/version_check_request.json
echo "Here are the changes:"
git diff
echo "-----------"
env:
REPO: ${{ inputs.mavenRepository }}
DEPS: ${{ inputs.mavenDependencies }}
- name: Setup Java 11
uses: actions/setup-java@v1
if: matrix.it != 'native'
with:
java-version: 11
- uses: actions/cache@v2
id: mvn-cache
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-unified-${{ steps.date.outputs.date }}
- 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 \
--define compatibilityCheckRepository=$REPO \
install
env:
REPO: ${{ inputs.mavenRepository }}
- 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: 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 \
--define compatibilityCheckRepository=$REPO \
install
env:
REPO: ${{ inputs.mavenRepository }}
- name: Show dependency tree
run: |
./mvnw -B -ntp dependency:tree --define compatibilityCheckRepository=$REPO
env:
REPO: ${{ inputs.mavenRepository }}
- 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 \
--define compatibilityCheckRepository=$REPO \
verify
env:
REPO: ${{ inputs.mavenRepository }}
- 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 \
--define compatibilityCheckRepository=$REPO \
verify
env:
REPO: ${{ inputs.mavenRepository }}