Removed obsolete macro and added command to generate bindings and skeleton with wit-bindgen #100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: ["**"] | |
release: | |
types: | |
- published | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: # Test against all LTS + latest | |
- java: 21 | |
- java: 23 | |
- java: 24-ea | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: graalvm | |
java-version: ${{ matrix.java }} | |
cache: sbt | |
- name: Setup SBT | |
uses: sbt/setup-sbt@v1 | |
- name: Build and test | |
shell: bash | |
run: | | |
sbt -v clean +publishLocal scripted | |
publish: | |
runs-on: ubuntu-latest | |
needs: [test] | |
if: github.ref == 'refs/heads/main' || github.event_name == 'release' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: graalvm | |
java-version: 21 | |
cache: sbt | |
- name: Setup SBT | |
uses: sbt/setup-sbt@v1 | |
- name: Publish | |
shell: bash | |
run: | | |
sbt ci-release | |
env: | |
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} |