Update .mill-version #274
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: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test-js: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: coursier/cache-action@v6 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: "8" | |
distribution: "temurin" | |
- name: Run tests | |
run: | | |
echo '-XX:MaxRAMPercentage=95.0' >> .mill-jvm-opts | |
./mill -i --disable-ticker __.js.__.resolvedIvyDeps | |
./mill -i --disable-ticker __.js.__.publishArtifacts + __.js.__.compile + __.js.__.fastOpt + __.js.__.test | |
test-native: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: coursier/cache-action@v6 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: "8" | |
distribution: "temurin" | |
- name: Run tests | |
run: | | |
echo '-XX:MaxRAMPercentage=95.0' >> .mill-jvm-opts | |
./mill -i --disable-ticker __.native.__.resolvedIvyDeps | |
./mill -i --disable-ticker __.native.__.publishArtifacts + __.native.__.compile + __.native.__.test | |
test-jvm: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: coursier/cache-action@v6 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: "8" | |
distribution: "temurin" | |
- name: Run tests | |
run: | | |
echo '-XX:MaxRAMPercentage=95.0' >> .mill-jvm-opts | |
./mill -i --disable-ticker __.jvm.__.resolvedIvyDeps | |
./mill -i --disable-ticker __.jvm.__.publishArtifacts + __.jvm.__.compile + __.jvm.__.test | |
check-binary-compatibility: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: coursier/cache-action@v6 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: "8" | |
distribution: "temurin" | |
- name: Check Binary Compatibility | |
run: ./mill -i --disable-ticker __.mimaReportBinaryIssues | |
publish-sonatype: | |
if: github.repository == 'com-lihaoyi/fastparse' && contains(github.ref, 'refs/tags/') | |
needs: | |
- test-jvm | |
- test-js | |
- test-native | |
runs-on: ubuntu-22.04 | |
env: | |
SONATYPE_PGP_PRIVATE_KEY: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY }} | |
SONATYPE_PGP_PRIVATE_KEY_PASSWORD: ${{ secrets.SONATYPE_PGP_PRIVATE_KEY_PASSWORD }} | |
SONATYPE_USER: ${{ secrets.SONATYPE_USER }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
LANG: "en_US.UTF-8" | |
LC_MESSAGES: "en_US.UTF-8" | |
LC_ALL: "en_US.UTF-8" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: coursier/cache-action@v6 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: "8" | |
distribution: "temurin" | |
- name: Publish to Maven Central | |
run: | | |
if [[ $(git tag --points-at HEAD) != '' ]]; then | |
echo $SONATYPE_PGP_PRIVATE_KEY | base64 --decode > gpg_key | |
gpg --import --no-tty --batch --yes gpg_key | |
rm gpg_key | |
./mill -i mill.scalalib.PublishModule/publishAll \ | |
--sonatypeCreds $SONATYPE_USER:$SONATYPE_PASSWORD \ | |
--gpgArgs --passphrase=$SONATYPE_PGP_PRIVATE_KEY_PASSWORD,--no-tty,--pinentry-mode,loopback,--batch,--yes,-a,-b \ | |
--publishArtifacts __.publishArtifacts \ | |
--readTimeout 600000 \ | |
--awaitTimeout 600000 \ | |
--release true \ | |
--signed true | |
fi |