Files
Toolbox/.gitea/workflows/ci.yml
Quentin Legot 3266f46d17
Some checks failed
Test and Deploy / build (21, ubuntu-latest) (push) Failing after 1m54s
Test and Deploy / deploy (21, ubuntu-latest) (push) Has been skipped
Dump gradle version to 9, dump to 5.2.0, remove cache in CI
2025-10-04 12:15:48 +02:00

83 lines
2.5 KiB
YAML

# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: Test and Deploy
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ dev ]
env:
REPO_USERNAME: Altarik
REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }}
DISCORD_PUB_ID: ${{ secrets.DISCORD_PUB_ID }}
DISCORD_PUB_TOKEN: ${{ secrets.DISCORD_PUB_TOKEN }}
jobs:
build:
strategy:
matrix:
java: [ '21' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: validate gradle wrapper
uses: https://github.com/gradle/wrapper-validation-action@v1
- name: setup jdk ${{ matrix.Java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
# - uses: actions/cache@v3
# with:
# path: |
# ~/.gradle/caches
# ~/.gradle/wrapper
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
# restore-keys: |
# ${{ runner.os }}-gradle-
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: |
chmod +x ./gradlew
touch local.properties
- name: build
run: ./gradlew build # compile classes, testClasses, assemble in jar and javadocJar, and then test
deploy:
strategy:
matrix:
java: [ '21' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
if: ${{ gitea.ref == 'refs/heads/master' && gitea.event_name == 'push' }}
needs: build
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: validate gradle wrapper
uses: https://github.com/gradle/wrapper-validation-action@v1
- name: setup jdk ${{ matrix.Java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: |
chmod +x ./gradlew
touch local.properties
- name: deploy
run: ./gradlew publish
- name: create tag
run: ./gradlew createTag
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
- name: Report to Discord
run: ./gradlew reportToDiscord