2022-01-03 08:43:40 +01:00
|
|
|
name: 'GitHub Action for GraalVM'
|
2023-06-16 09:19:49 +02:00
|
|
|
description: 'Set up a specific version of the GraalVM JDK and add the command-line tools to the PATH'
|
2022-08-31 10:07:18 +02:00
|
|
|
author: 'GraalVM Community'
|
2022-01-03 08:43:40 +01:00
|
|
|
branding:
|
|
|
|
icon: 'terminal'
|
|
|
|
color: 'blue'
|
|
|
|
inputs:
|
|
|
|
java-version:
|
|
|
|
required: true
|
2023-06-16 09:19:49 +02:00
|
|
|
description: 'Java version. See examples of supported syntax in the README file.'
|
|
|
|
distribution:
|
|
|
|
description: 'GraalVM distribution. See the list of available distributions in the README file.'
|
|
|
|
required: false
|
|
|
|
default: ''
|
2022-01-03 08:43:40 +01:00
|
|
|
components:
|
|
|
|
required: false
|
2022-01-20 17:49:45 +01:00
|
|
|
description: 'Comma-separated list of GraalVM components to be installed.'
|
2022-01-03 08:43:40 +01:00
|
|
|
default: ''
|
|
|
|
github-token:
|
|
|
|
required: false
|
2023-04-11 08:39:53 +02:00
|
|
|
description: 'Set it to secrets.GITHUB_TOKEN to increase rate limits when accessing the GitHub API. Defaults to github.token.'
|
|
|
|
default: ${{ github.token }}
|
2022-01-03 08:43:40 +01:00
|
|
|
set-java-home:
|
|
|
|
required: false
|
2022-01-20 17:49:45 +01:00
|
|
|
description: 'Set $JAVA_HOME to the GraalVM installation. Default: true.'
|
2022-01-03 08:43:40 +01:00
|
|
|
default: 'true'
|
2022-08-31 10:07:18 +02:00
|
|
|
cache:
|
|
|
|
description: 'Name of the build platform to cache dependencies. It can be "maven", "gradle", or "sbt".'
|
|
|
|
required: false
|
2022-11-02 14:00:51 +01:00
|
|
|
check-for-updates:
|
|
|
|
required: false
|
|
|
|
description: 'Annotate jobs with update notifications, for example, when a new GraalVM release is available'
|
|
|
|
default: 'true'
|
2022-01-20 17:49:45 +01:00
|
|
|
native-image-musl:
|
|
|
|
required: false
|
|
|
|
description: 'Set up musl for static image building with GraalVM Native Image.'
|
|
|
|
default: 'false'
|
2022-11-03 17:13:30 +01:00
|
|
|
native-image-job-reports:
|
|
|
|
required: false
|
|
|
|
description: 'Post a job summary containing a Native Image build report.'
|
|
|
|
default: 'false'
|
|
|
|
native-image-pr-reports:
|
|
|
|
required: false
|
|
|
|
description: 'Post a comment containing a Native Image build report on pull requests.'
|
|
|
|
default: 'false'
|
2023-06-16 09:19:49 +02:00
|
|
|
version:
|
|
|
|
required: false
|
|
|
|
description: 'GraalVM version (release, latest, dev).'
|
|
|
|
default: ''
|
|
|
|
gds-token:
|
|
|
|
required: false
|
|
|
|
description: 'Download token for the GraalVM Download Service. If provided, the action will set up GraalVM Enterprise Edition.'
|
2022-11-18 10:16:58 +01:00
|
|
|
outputs:
|
|
|
|
cache-hit:
|
|
|
|
description: 'A boolean value to indicate an exact match was found for the primary key'
|
2022-01-03 08:43:40 +01:00
|
|
|
runs:
|
2022-08-31 10:07:18 +02:00
|
|
|
using: 'node16'
|
|
|
|
main: 'dist/main/index.js'
|
|
|
|
post: 'dist/cleanup/index.js'
|
2022-08-31 11:24:48 +02:00
|
|
|
post-if: 'success()'
|