Skip to content

Commit

Permalink
chore: squash #1 for testing
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <[email protected]>
  • Loading branch information
sgammon authored Jun 10, 2024
1 parent 4f94c57 commit 2489b8b
Show file tree
Hide file tree
Showing 84 changed files with 1,411 additions and 5 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,15 @@ jobs:
run: |
ant test
ant test-platform
# test-graalvm:
# strategy:
# matrix:
# java: [21]
# os: [ubuntu-latest]
# fail-fast: true
# name: GraalVM Native
# uses: ./.github/workflows/graalvm.yaml
# with:
# runner: ${{ matrix.os }}
# java: ${{ matrix.java }}
34 changes: 34 additions & 0 deletions .github/workflows/graalvm.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# GraalVM build and native test.
name: GraalVM CI

on:
workflow_dispatch:
workflow_call:
pull_request:
push:
branches:
- master

permissions:
contents: read

env:
ANT_OPTS: -Djava.security.manager=allow

jobs:
build:
runs-on: ubuntu-latest
name: Test GVM 22, ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
with:
java-version: '22'
distribution: 'graalvm-community'
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Linux requirements
run: sudo apt-get -y install texinfo
- uses: gradle/actions/setup-gradle@v3
- name: "Build: Native Image"
run: ant dist && ant install && ant nativeImage && ant nativeRun
Loading

0 comments on commit 2489b8b

Please sign in to comment.