mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-02 21:00:56 +00:00
76 lines
2.2 KiB
YAML
76 lines
2.2 KiB
YAML
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
|
|
- name: Archive Pork Runtime Executable
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: pork-rt-linux-amd64
|
|
path: minimal/build/native/nativeCompile/pork-rt
|
|
darwin-amd64:
|
|
runs-on: macos-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-darwin-amd64
|
|
path: tool/build/native/nativeCompile/pork
|
|
- name: Archive Pork Runtime Executable
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: pork-rt-darwin-amd64
|
|
path: minimal/build/native/nativeCompile/pork-rt
|
|
windows-amd64:
|
|
runs-on: windows-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-windows-amd64
|
|
path: tool/build/native/nativeCompile/pork.exe
|
|
- name: Archive Pork Runtime Executable
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: pork-rt-windows-amd64
|
|
path: minimal/build/native/nativeCompile/pork-rt.exe
|