Nightly GradleRio Test #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly GradleRio Test | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '15 2 * * *' | |
jobs: | |
test-gradlerio: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- run: git clone https://github.com/wpilibsuite/GradleRIO.git | |
- run: rm GradleRIO/gradle.properties | |
- run: touch GradleRIO/gradle.properties | |
- run: echo "version = 2024kt" >> GradleRIO/gradle.properties | |
- run: ./gradlew publishToMavenLocal | |
working-directory: GradleRIO | |
- run: ./gradlew build |