-
Notifications
You must be signed in to change notification settings - Fork 6
91 lines (75 loc) · 2.61 KB
/
vertx-base.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
name: vertx-base
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # Cron job to run daily at midnight (UTC)
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
# - name: Authenticate to Google Cloud
# uses: google-github-actions/auth@v2
# with:
# project_id: 'som-rit-infrastructure-prod'
# workload_identity_provider: 'projects/294515190965/locations/global/workloadIdentityPools/github/providers/susom-github'
- name: Copy Maven settings
run: cp ./travis/settings.xml $HOME/.m2/settings.xml
- name: Cache Maven dependencies
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Update version in pom.xml
run: sed -i "s/-SNAPSHOT/-build-${{ github.run_number }}/" pom.xml
- name: Display Surefire reports on failure
if: failure()
run: |
echo "\n=== SUREFIRE REPORTS ===\n"
for F in target/surefire-reports/*.txt; do echo $F; cat $F; echo; done
deploy_snapshots:
if: github.event_name == 'push'
name: Deploy Snapshots
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2
with:
project_id: 'som-rit-infrastructure-prod'
workload_identity_provider: 'projects/294515190965/locations/global/workloadIdentityPools/github/providers/susom-github'
service_account: 'principalSet://iam.googleapis.com/projects/294515190965/locations/global/workloadIdentityPools/github/attribute.repository/susom/vertx-base'
- name: Copy Maven settings
run: cp ./travis/settings.xml $HOME/.m2/settings.xml
- name: Cache Maven dependencies
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Deploy Snapshots
run: |
mvn -U -Dmaven.wagon.http.retryHandler.count=3 --batch-mode -e -DskipTests=true deploy -X