-
Notifications
You must be signed in to change notification settings - Fork 21
158 lines (131 loc) · 4.87 KB
/
ci.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
name: CI
on:
# Only run push on main
push:
branches:
- main
paths-ignore:
- '**/*.md'
# Always run on PRs
pull_request:
branches: [ main ]
merge_group:
concurrency:
group: 'ci-${{ github.event.merge_group.head_ref || github.head_ref }}-${{ github.workflow }}'
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
env:
GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Export JDK version
shell: bash
run: |
JDK_VERSION=$(grep "jdk =" gradle/libs.versions.toml | head -n 1 | cut -d'=' -f2 | tr -d '"' | xargs)
echo "JDK_VERSION=${JDK_VERSION}" >> $GITHUB_ENV
- name: Install JDK ${{ env.JDK_VERSION }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '${{ env.JDK_VERSION }}'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
# Only save Gradle User Home state for builds on the 'main' branch.
# Builds on other branches will only read existing entries from the cache.
cache-read-only: ${{ github.ref != 'refs/heads/main' }}
# Don't reuse cache entries from any other Job.
gradle-home-cache-strict-match: true
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
# Limit the size of the cache entry.
# These directories contain instrumented/transformed dependency jars which can be reconstructed relatively quickly.
gradle-home-cache-excludes: |
caches/jars-9
caches/transforms-3
- name: Build and run tests
id: gradle
timeout-minutes: 10
run: ./gradlew check
- name: Print build scan url
if: always()
run: echo ${{ steps.gradle.outputs.build-scan-url }}
- name: (Fail-only) Upload build reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: reports
path: |
**/build/reports/**
snapshots:
runs-on: macos-latest
env:
GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: 'true'
- name: Check LFS files
uses: actionsdesk/[email protected]
- name: Export JDK version
shell: bash
run: |
JDK_VERSION=$(grep "jdk =" gradle/libs.versions.toml | head -n 1 | cut -d'=' -f2 | tr -d '"' | xargs)
echo "JDK_VERSION=${JDK_VERSION}" >> $GITHUB_ENV
- name: Install JDK ${{ env.JDK_VERSION }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '${{ env.JDK_VERSION }}'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
# Only save Gradle User Home state for builds on the 'main' branch.
# Builds on other branches will only read existing entries from the cache.
cache-read-only: ${{ github.ref != 'refs/heads/main' }}
# Don't reuse cache entries from any other Job.
gradle-home-cache-strict-match: true
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
# Limit the size of the cache entry.
# These directories contain instrumented/transformed dependency jars which can be reconstructed relatively quickly.
gradle-home-cache-excludes: |
caches/jars-9
caches/transforms-3
- name: Build and run tests
id: gradle
timeout-minutes: 10
run: ./gradlew verifyRoborazzi
- name: (Fail-only) Upload build reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: snapshot-reports
path: |
**/build/reports/**
**/build/outputs/roborazzi/*.png
publish-snapshot:
name: 'Publish snapshot (main only)'
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs: 'build'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Export JDK version
shell: bash
run: |
JDK_VERSION=$(grep "jdk =" gradle/libs.versions.toml | head -n 1 | cut -d'=' -f2 | tr -d '"' | xargs)
echo "JDK_VERSION=${JDK_VERSION}" >> $GITHUB_ENV
- name: Install JDK ${{ env.JDK_VERSION }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '${{ env.JDK_VERSION }}'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Publish snapshot
if: github.repository == 'slackhq/foundry'
run: ./gradlew publish -PmavenCentralUsername=${{ secrets.SONATYPEUSERNAME }} -PmavenCentralPassword=${{ secrets.SONATYPEPASSWORD }}