Skip to content

Disable parboiled2 in community build #8136

Disable parboiled2 in community build

Disable parboiled2 in community build #8136

Workflow file for this run

name: Compile Full Standard Library
on:
push:
branches:
- 'main'
pull_request:
workflow_call:
permissions:
contents: read
env:
DOTTY_CI_RUN: true
jobs:
test-scala-library-nonbootstrapped:
if: github.event_name != 'pull_request' || !contains(github.event.pull_request.body, '[skip ci]')
name: Non-Bootstrapped Library Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 17
cache: 'sbt'
- uses: sbt/setup-sbt@v1
- run: ./project/scripts/sbt scala-library-nonbootstrapped/test
test-scala-library-bootstrapped:
if: github.event_name != 'pull_request' || !contains(github.event.pull_request.body, '[skip ci]')
name: Bootstrapped Library Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 17
cache: 'sbt'
- uses: sbt/setup-sbt@v1
- run: ./project/scripts/sbt scala-library-bootstrapped/test
scala-library-docs:
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: Generate Documentation of the Standard Library
run: ./project/scripts/sbt scala-library-bootstrapped/doc