Disable parboiled2 in community build
#229
Workflow file for this run
This file contains hidden or 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: MiMa Binary Compatibility Checks | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| env: | |
| DOTTY_CI_RUN: true | |
| jobs: | |
| mima-scala-library-nonbootstrapped: | |
| runs-on: ubuntu-latest | |
| if: false | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: 'sbt' | |
| - uses: sbt/setup-sbt@v1 | |
| - name: Report MiMa issues in `scala-library-nonbootstrapped` | |
| run: ./project/scripts/sbt scala-library-nonbootstrapped/mimaReportBinaryIssues | |
| mima-scala3-interfaces: | |
| if: github.event_name != 'pull_request' || !contains(github.event.pull_request.body, '[skip ci]') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: 'sbt' | |
| - uses: sbt/setup-sbt@v1 | |
| - name: Report MiMa issues in `scala3-interfaces` | |
| run: ./project/scripts/sbt scala3-interfaces/mimaReportBinaryIssues | |
| mima-tasty-core-nonbootstrapped: | |
| if: github.event_name != 'pull_request' || !contains(github.event.pull_request.body, '[skip ci]') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: 'sbt' | |
| - uses: sbt/setup-sbt@v1 | |
| - name: Report MiMa issues in `tasty-core-nonbootstrapped` | |
| run: ./project/scripts/sbt tasty-core-nonbootstrapped/mimaReportBinaryIssues | |
| static-analysis-scala-library-bootstrapped: | |
| if: github.event_name != 'pull_request' || !contains(github.event.pull_request.body, '[skip ci]') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: 'sbt' | |
| - uses: sbt/setup-sbt@v1 | |
| - name: Report MiMa issues in `scala-library-bootstrapped` | |
| run: ./project/scripts/sbt scala-library-bootstrapped/mimaReportBinaryIssues | |
| - name: Report missingLink checks | |
| run: ./project/scripts/sbt scala-library-bootstrapped/missinglinkCheck | |
| mima-tasty-core-bootstrapped: | |
| if: github.event_name != 'pull_request' || !contains(github.event.pull_request.body, '[skip ci]') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: 'sbt' | |
| - uses: sbt/setup-sbt@v1 | |
| - name: Report MiMa issues in `tasty-core-bootstrapped` | |
| run: ./project/scripts/sbt tasty-core-bootstrapped/mimaReportBinaryIssues | |
| mima-scala-library-sjs: | |
| if: github.event_name != 'pull_request' || !contains(github.event.pull_request.body, '[skip ci]') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: 'sbt' | |
| - uses: sbt/setup-sbt@v1 | |
| - name: Report MiMa issues in `scala-library-sjs` | |
| run: ./project/scripts/sbt scala-library-sjs/mimaReportBinaryIssues |