Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Add simple test for arch
Browse files Browse the repository at this point in the history
  • Loading branch information
DeLaGuardo committed Mar 15, 2021
1 parent 91d45bf commit 3e9d405
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@ name: Simple example of using
on: [push]

jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Setup GraalVM
uses: DeLaGuardo/setup-graalvm@new-parameters
with:
graalvm: 21.0.0.2
java: java11
arch: aarch64

- name: Check java binary
run: java -version

- name: Check gu binary
run: gu install native-image

simple:
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -18,9 +34,10 @@ jobs:
gu-binary: gu
steps:
- name: Setup GraalVM
uses: DeLaGuardo/setup-graalvm@master
uses: DeLaGuardo/setup-graalvm@new-parameters
with:
graalvm-version: 20.3.0.java11
graalvm: 21.0.0.2
java: java11

- name: Check java binary
run: java -version
Expand Down

0 comments on commit 3e9d405

Please sign in to comment.