mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-03 13:11:32 +00:00
Auto-generate the AST.
This commit is contained in:
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
@ -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
22
.github/workflows/graal.yml
vendored
Normal 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
|
Reference in New Issue
Block a user