Revert "Hide ofSize even more from scala3 when using tasty" (#119) #2
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: Bolts CI Verification | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
env: | |
# define Java options for both official sbt and sbt-extras | |
JAVA_OPTS: -Dsbt.io.implicit.relative.glob.conversion=allow -Xss512M -Xms1024M -Xmx12G -XX:MaxMetaspaceSize=2G -XX:+UseCodeCacheFlushing -XX:ReservedCodeCacheSize=768M | |
JVM_OPTS: -Dsbt.io.implicit.relative.glob.conversion=allow -Xss512M -Xms1024M -Xmx12G -XX:MaxMetaspaceSize=2G -XX:+UseCodeCacheFlushing -XX:ReservedCodeCacheSize=768M | |
JAVA_OPTS_TMP_DIR: /tmp/tmp_${{ github.run_id }}_${{ github.run_attempt }} | |
jobs: | |
bolts-verification: | |
runs-on: [self-hosted, linux] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./.github/workflows/setup | |
with: | |
java-opts: ${{ env.JAVA_OPTS }} | |
java-version: 17 | |
temp-dir: "/tmp/tmp_${{ github.run_id }}_${{ github.run_attempt }}" | |
- name: Bolts Tests with verification | |
run: ./run-tests.sh |