Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rinx/setup-graalvm-ce
GitHub Action for setting up GraalVM CE
https://github.com/rinx/setup-graalvm-ce
actions graalvm graalvm-ce
Last synced: about 1 month ago
JSON representation
GitHub Action for setting up GraalVM CE
- Host: GitHub
- URL: https://github.com/rinx/setup-graalvm-ce
- Owner: rinx
- License: mit
- Created: 2019-12-14T05:58:51.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-06T00:55:40.000Z (about 4 years ago)
- Last Synced: 2024-10-19T02:14:18.635Z (2 months ago)
- Topics: actions, graalvm, graalvm-ce
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 18
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-graalvm-ce
This is a GitHub Action for setting up GraalVM CE of specified version.
## Inputs
### `graalvm-version`
GraalVM version (required)
Default: 20.2.0
### `java-version`
Java version (required)
Default: java8
### `native-image`
Install native-image
Default: true
## Examples
```yaml
on: push
jobs:
setup-graalvm-ce:
runs-on: ubuntu-latest
steps:
- name: setup-graalvm-ce
uses: rinx/[email protected]
with:
graalvm-version: "20.2.0"
java-version: "java11"
native-image: "true"
- name: version
run: |
java -version
native-image --version