Files
spring-aot-smoke-tests/.github/workflows/smoke-test-native.yml
2024-05-16 12:12:15 +01:00

38 lines
919 B
YAML

name: Native Smoke Test
on:
workflow_call:
inputs:
project:
required: true
type: string
task:
required: true
type: string
checkout_repository:
required: true
type: string
checkout_ref:
required: true
type: string
expected_to_fail:
required: false
type: boolean
default: false
java_version:
required: false
type: string
default: '17'
jobs:
native_smoke_test:
name: ${{ inputs.task }}
uses: ./.github/workflows/smoke-test.yml
secrets: inherit
with:
project: ${{ inputs.project }}
task: ${{ inputs.task }}
type: 'native'
checkout_repository: ${{ inputs.checkout_repository }}
checkout_ref: ${{ inputs.checkout_ref }}
expected_to_fail: ${{ inputs.expected_to_fail }}
graal_version: ${{ inputs.java_version }}