Skip to content

maint: bump internal deps for build and test #348

maint: bump internal deps for build and test

maint: bump internal deps for build and test #348

name: Native Image Tests
on:
# allow this workflow to be called from other workflows, namely: publish
workflow_call:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ windows, ubuntu, macos ]
java-version: [ '17.0.8', '20.0.2' ]
test: [ test-native, test-native-sci ]
clojure-version: [ '1.11' ]
name: ${{ matrix.os }},jdk ${{ matrix.graal-java }},${{ matrix.test }},clj ${{ matrix.clojure-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/workflows/shared-setup
with:
jdk: skip
- name: Install GraalVM
uses: graalvm/setup-graalvm@v1
with:
java-version: ${{ matrix.java-version }}
distribution: 'graalvm-community'
github-token: ${{ secrets.GITHUB_TOKEN }}
#
# native image tests
#
- name: Execute ${{ matrix.test }}
run: bb ${{ matrix.test }} --clojure-version ${{ matrix.clojure-version }}