-
Notifications
You must be signed in to change notification settings - Fork 24
69 lines (58 loc) · 1.69 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
name: CI
on:
# Only run push on main
push:
branches:
- main
paths-ignore:
- '*.md'
# Always run on PRs
pull_request:
merge_group:
concurrency:
group: '${{ github.event.merge_group.head_ref || github.head_ref }}-${{ github.workflow }}'
cancel-in-progress: true
jobs:
build:
name: "K2 UAST = ${{ matrix.useK2Uast }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
useK2Uast: [ true, false ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build
run: ./gradlew check -Dlint.use.fir.uast=${{ matrix.useK2Uast }}
- name: (Fail-only) Upload build reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: reports-useK2Uast=${{ matrix.useK2Uast }}
path: |
**/build/reports/*
publish-snapshots:
name: "Publish snapshots"
if: github.repository == 'slackhq/compose-lints' && github.ref == 'refs/heads/main'
needs: 'build'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Publish
run: ./gradlew publish -PmavenCentralUsername=${{ secrets.SONATYPEUSERNAME }} -PmavenCentralPassword=${{ secrets.SONATYPEPASSWORD }} --no-configuration-cache