|
47 | 47 |
|
48 | 48 | scala-library-bootstrapped:
|
49 | 49 | runs-on: ubuntu-latest
|
| 50 | + needs : [scala3-compiler-nonbootstrapped, scala3-sbt-bridge-nonbootstrapped, scala-library-nonbootstrapped, scala3-library-nonbootstrapped] |
50 | 51 | steps:
|
51 | 52 | - name: Git Checkout
|
52 | 53 | uses: actions/checkout@v4
|
@@ -130,3 +131,54 @@ jobs:
|
130 | 131 | - uses: sbt/setup-sbt@v1
|
131 | 132 | - name: Compile `scala3-sbt-bridge-nonbootstrapped`
|
132 | 133 | run: ./project/scripts/sbt scala3-sbt-bridge-nonbootstrapped/compile
|
| 134 | + |
| 135 | + tasty-core-bootstrapped: |
| 136 | + runs-on: ubuntu-latest |
| 137 | + ##needs: [scala3-library-bootstrapped] Add when we add support for caching here |
| 138 | + steps: |
| 139 | + - name: Git Checkout |
| 140 | + uses: actions/checkout@v4 |
| 141 | + |
| 142 | + - name: Set up JDK 17 |
| 143 | + uses: actions/setup-java@v4 |
| 144 | + with: |
| 145 | + distribution: 'temurin' |
| 146 | + java-version: 17 |
| 147 | + cache: 'sbt' |
| 148 | + - uses: sbt/setup-sbt@v1 |
| 149 | + - name: Compile `tasty-core-bootstrapped` |
| 150 | + run: ./project/scripts/sbt tasty-core-bootstrapped-new/compile |
| 151 | + |
| 152 | + scala3-compiler-bootstrapped: |
| 153 | + runs-on: ubuntu-latest |
| 154 | + ##needs: [tasty-core-bootstrapped, scala3-library-bootstrapped] Add when we add support for caching here |
| 155 | + steps: |
| 156 | + - name: Git Checkout |
| 157 | + uses: actions/checkout@v4 |
| 158 | + |
| 159 | + - name: Set up JDK 17 |
| 160 | + uses: actions/setup-java@v4 |
| 161 | + with: |
| 162 | + distribution: 'temurin' |
| 163 | + java-version: 17 |
| 164 | + cache: 'sbt' |
| 165 | + - uses: sbt/setup-sbt@v1 |
| 166 | + - name: Compile `scala3-compiler-bootstrapped` |
| 167 | + run: ./project/scripts/sbt scala3-compiler-bootstrapped-new/compile |
| 168 | + |
| 169 | + scala3-sbt-bridge-bootstrapped: |
| 170 | + runs-on: ubuntu-latest |
| 171 | + ##needs: [scala3-compiler-bootstrapped] Add when we add support for caching here |
| 172 | + steps: |
| 173 | + - name: Git Checkout |
| 174 | + uses: actions/checkout@v4 |
| 175 | + |
| 176 | + - name: Set up JDK 17 |
| 177 | + uses: actions/setup-java@v4 |
| 178 | + with: |
| 179 | + distribution: 'temurin' |
| 180 | + java-version: 17 |
| 181 | + cache: 'sbt' |
| 182 | + - uses: sbt/setup-sbt@v1 |
| 183 | + - name: Compile `scala3-sbt-bridge-bootstrapped` |
| 184 | + run: ./project/scripts/sbt scala3-sbt-bridge-bootstrapped/compile |
0 commit comments