-
Notifications
You must be signed in to change notification settings - Fork 21
90 lines (75 loc) · 2.41 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
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
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check LFS files
uses: actionsdesk/lfs-warning@v3.2
- 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: Build and run tests
id: gradle
timeout-minutes: 10
run: ./gradlew check verifyRoborazzi
- 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/**
**/src/jvmTest/snapshots/**/*_compare.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
with:
lfs: 'true'
- 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 }}