mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
40 lines
1021 B
YAML
40 lines
1021 B
YAML
name: Build and Test the Prog8 compiler
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: keyring
|
|
run: sudo apt-get install debian-keyring debian-archive-keyring
|
|
|
|
- name: add debian testing repository and install 64tass
|
|
uses: myci-actions/add-deb-repo@11
|
|
with:
|
|
repo: deb http://ftp.debian.org/debian/ testing contrib main
|
|
repo-name: testing
|
|
keys-asc: https://gagis.hopto.org/repo/cppfw/pubkey.gpg
|
|
install: 64tass
|
|
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
java-version: 11
|
|
distribution: adopt
|
|
|
|
- name: Build and test with Gradle
|
|
run: ./gradlew build shadowJar --no-daemon
|
|
|
|
- name: Create compiler shadowJar artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: prog8-compiler-jar-zipped
|
|
path: compiler/build/libs/*-all.jar
|