Update scala3-graal to 1.0.5 (#11) #37
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: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*" | |
pull_request: | |
jobs: | |
generate-launchers: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: coursier/[email protected] | |
- uses: coursier/[email protected] | |
with: | |
jvm: temurin:17 | |
- run: | | |
./mill -i "java-class-name.writeNativeImageScript" generate.sh "" && \ | |
./generate.sh && \ | |
./mill -i "java-class-name.copyToArtifacts" artifacts/ | |
if: runner.os != 'Windows' | |
- run: | | |
@call ./mill.bat -i "java-class-name.writeNativeImageScript" generate.bat "" | |
@call generate.bat | |
@call ./mill.bat -i "java-class-name.copyToArtifacts" artifacts/ | |
shell: cmd | |
if: runner.os == 'Windows' | |
- name: Test | |
run: ./mill -i java-class-name-tests.test | |
- uses: actions/[email protected] | |
with: | |
name: launcher-${{ matrix.os }} | |
path: artifacts/ | |
if-no-files-found: error | |
retention-days: 1 | |
- run: ./mill -i ci.upload artifacts/ | |
if: github.event_name == 'push' | |
env: | |
UPLOAD_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
generate-static-launcher: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: coursier/[email protected] | |
- uses: coursier/[email protected] | |
with: | |
jvm: temurin:17 | |
- run: | | |
./mill -i "java-class-name.static.writeNativeImageScript" generate.sh "" && \ | |
./generate.sh && \ | |
./mill -i "java-class-name.static.copyToArtifacts" artifacts/ | |
- uses: actions/[email protected] | |
with: | |
name: launcher-linux-static | |
path: artifacts/ | |
if-no-files-found: error | |
retention-days: 1 | |
- name: Test | |
run: ./mill -i java-class-name-tests.static.test | |
- run: ./mill -i ci.upload artifacts/ | |
if: github.event_name == 'push' | |
env: | |
UPLOAD_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
generate-mostly-static-launcher: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: coursier/[email protected] | |
- uses: coursier/[email protected] | |
with: | |
jvm: temurin:17 | |
- run: | | |
./mill -i "java-class-name.mostly-static.writeNativeImageScript" generate.sh "" && \ | |
./generate.sh && \ | |
./mill -i "java-class-name.mostly-static.copyToArtifacts" artifacts/ | |
- uses: actions/[email protected] | |
with: | |
name: launcher-linux-mostly-static | |
path: artifacts/ | |
if-no-files-found: error | |
retention-days: 1 | |
- name: Test | |
run: ./mill -i java-class-name-tests.mostly-static.test | |
- run: ./mill -i ci.upload artifacts/ | |
if: github.event_name == 'push' | |
env: | |
UPLOAD_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
publish: | |
needs: generate-launchers | |
if: github.event_name == 'push' | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: coursier/[email protected] | |
- uses: coursier/[email protected] | |
with: | |
jvm: temurin:17 | |
- run: .github/scripts/gpg-setup.sh | |
env: | |
PGP_SECRET: ${{ secrets.PGP_SECRET }} | |
- name: Publish | |
run: ./mill -i ci.publishSonatype __.publishArtifacts | |
env: | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
PGP_PASSWORD: ${{ secrets.PGP_PASSPHRASE }} |