Auto-generate the AST.

This commit is contained in:
2023-09-04 21:50:27 -07:00
parent f06ea93dc4
commit 174d51ca1c
58 changed files with 741 additions and 390 deletions

View File

@ -15,3 +15,13 @@ jobs:
uses: gradle/gradle-build-action@v2
with:
arguments: build
- name: Archive Pork Bundle
uses: actions/upload-artifact@v3
with:
name: pork-bundle
path: tool/build/distributions/pork.zip
- name: Archive Pork Jar
uses: actions/upload-artifact@v3
with:
name: pork-jar
path: tool/build/distributions/pork-all.jar

22
.github/workflows/graal.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: graal
on: [push]
jobs:
linux-amd64:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up GraalVM
uses: graalvm/setup-graalvm@v1
with:
java-version: '17'
distribution: 'graalvm'
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: nativeCompile
- name: Archive Pork Executable
uses: actions/upload-artifact@v3
with:
name: pork-linux-amd64
path: tool/build/native/nativeCompile/pork