-
Notifications
You must be signed in to change notification settings - Fork 21
56 lines (53 loc) · 1.66 KB
/
main.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
name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
- name: Build
run: ./gradlew build -PRunToolchainTests
- name: Publish
run: ./gradlew publishToMavenLocal
- name: Check output
run: git --no-pager diff --exit-code HEAD
- name: InstallRioTC
run: ./gradlew installRoboRioToolchain
working-directory: testing/cpp
- name: InstallArm32Tc
run: ./gradlew installArm32Toolchain
working-directory: testing/cpp
- name: InstallArm64Tc
run: ./gradlew installArm64Toolchain
working-directory: testing/cpp
- name: Build Test
run: ./gradlew build
working-directory: testing/cpp
publish:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
- name: Publish
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
run: ./gradlew publishToMavenLocal
- name: Publish (Release)
if: ${{ github.repository_owner == 'wpilibsuite' && startsWith(github.ref, 'refs/tags/v') }}
env:
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }}
GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }}
run: |
./gradlew publishPlugin \
-Pgradle.publish.key=$GRADLE_PUBLISH_KEY \
-Pgradle.publish.secret=$GRADLE_PUBLISH_SECRET