mirror of
https://github.com/ViaVersion/ViaForge.git
synced 2024-11-08 10:09:36 +01:00
33 lines
883 B
YAML
33 lines
883 B
YAML
name: ViaForge build
|
|
on: [pull_request, push, workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
# Use these Java versions
|
|
java: [
|
|
8
|
|
]
|
|
os: [ubuntu-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: validate gradle wrapper
|
|
uses: gradle/wrapper-validation-action@v1
|
|
- name: setup jdk ${{ matrix.java }}
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
- name: make gradle wrapper executable
|
|
run: chmod +x ./gradlew
|
|
- name: build
|
|
run: ./gradlew build
|
|
- name: capture build artifacts
|
|
if: ${{ runner.os == 'Linux' && matrix.java == '8' }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ViaForge-1.12.2
|
|
path: build/libs/
|