add workflow
This commit is contained in:
parent
31ccfd9983
commit
6c4d6532be
69
.gitea/workflows/build.yml
Normal file
69
.gitea/workflows/build.yml
Normal file
@ -0,0 +1,69 @@
|
||||
Logo
|
||||
Issues
|
||||
Pull Requests
|
||||
Milestones
|
||||
Explore
|
||||
MCTorn
|
||||
/
|
||||
Gallium
|
||||
Private
|
||||
Code
|
||||
Issues
|
||||
Pull Requests
|
||||
Actions
|
||||
Packages
|
||||
Projects
|
||||
Releases
|
||||
Wiki
|
||||
Activity
|
||||
Settings
|
||||
Gallium
|
||||
/
|
||||
.gitea
|
||||
/
|
||||
workflows
|
||||
/
|
||||
build.yml
|
||||
jreimers
|
||||
Jannik Reimers
|
||||
8202eed691
|
||||
forgot adding gambling permissions to gradlew
|
||||
4 days ago
|
||||
35 lines
|
||||
1.1 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: build
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
java: [21]
|
||||
os: [ubuntu-22.04]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: validate gradle wrapper
|
||||
uses: gradle/wrapper-validation-action@v1
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: setup jdk ${{ matrix.java }}
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: ${{ matrix.java }}
|
||||
distribution: 'microsoft'
|
||||
- name: build
|
||||
run: ./gradlew build
|
||||
- name: capture build artifacts
|
||||
if: ${{ runner.os == 'Linux' && matrix.java == '21' }} # Only upload artifacts built from latest java on one OS
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: Artifacts
|
||||
path: build/libs/
|
Loading…
x
Reference in New Issue
Block a user