|
| 1 | +name: Compile Full Standard Library |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + branches: |
| 6 | + - 'main' |
| 7 | + pull_request: |
| 8 | + |
| 9 | +permissions: |
| 10 | + contents: read |
| 11 | + |
| 12 | +jobs: |
| 13 | + scala-library-nonbootstrapped: |
| 14 | + runs-on: ubuntu-latest |
| 15 | + steps: |
| 16 | + - name: Git Checkout |
| 17 | + uses: actions/checkout@v4 |
| 18 | + |
| 19 | + - name: Set up JDK 17 |
| 20 | + uses: actions/setup-java@v4 |
| 21 | + with: |
| 22 | + distribution: 'temurin' |
| 23 | + java-version: 17 |
| 24 | + cache: 'sbt' |
| 25 | + |
| 26 | + - uses: sbt/setup-sbt@v1 |
| 27 | + - name: Compile `scala-library-nonbootstrapped` |
| 28 | + run: ./project/scripts/sbt scala-library-nonbootstrapped/compile |
| 29 | + |
| 30 | + scala3-library-nonbootstrapped: |
| 31 | + runs-on: ubuntu-latest |
| 32 | + ##needs: [scala-library-nonbootstrapped] Add when we add support for caching here |
| 33 | + steps: |
| 34 | + - name: Git Checkout |
| 35 | + uses: actions/checkout@v4 |
| 36 | + |
| 37 | + - name: Set up JDK 17 |
| 38 | + uses: actions/setup-java@v4 |
| 39 | + with: |
| 40 | + distribution: 'temurin' |
| 41 | + java-version: 17 |
| 42 | + cache: 'sbt' |
| 43 | + |
| 44 | + - uses: sbt/setup-sbt@v1 |
| 45 | + - name: Compile `scala3-library-nonbootstrapped` |
| 46 | + run: ./project/scripts/sbt scala3-library-nonbootstrapped/compile |
| 47 | + |
| 48 | + scala-library-bootstrapped: |
| 49 | + runs-on: ubuntu-latest |
| 50 | + needs : [scala3-compiler-nonbootstrapped, scala3-sbt-bridge-nonbootstrapped, scala-library-nonbootstrapped, scala3-library-nonbootstrapped] |
| 51 | + steps: |
| 52 | + - name: Git Checkout |
| 53 | + uses: actions/checkout@v4 |
| 54 | + |
| 55 | + - name: Set up JDK 17 |
| 56 | + uses: actions/setup-java@v4 |
| 57 | + with: |
| 58 | + distribution: 'temurin' |
| 59 | + java-version: 17 |
| 60 | + cache: 'sbt' |
| 61 | + |
| 62 | + - uses: sbt/setup-sbt@v1 |
| 63 | + - name: Compile `scala-library-bootstrapped` |
| 64 | + run: ./project/scripts/sbt scala-library-bootstrapped/compile |
| 65 | + |
| 66 | + scala3-library-bootstrapped: |
| 67 | + runs-on: ubuntu-latest |
| 68 | + ##needs: [scala-library-bootstrapped] Add when we add support for caching here |
| 69 | + steps: |
| 70 | + - name: Git Checkout |
| 71 | + uses: actions/checkout@v4 |
| 72 | + |
| 73 | + - name: Set up JDK 17 |
| 74 | + uses: actions/setup-java@v4 |
| 75 | + with: |
| 76 | + distribution: 'temurin' |
| 77 | + java-version: 17 |
| 78 | + cache: 'sbt' |
| 79 | + |
| 80 | + - uses: sbt/setup-sbt@v1 |
| 81 | + - name: Compile `scala3-library-bootstrapped` |
| 82 | + run: ./project/scripts/sbt scala3-library-bootstrapped-new/compile |
| 83 | + |
| 84 | + tasty-core-nonbootstrapped: |
| 85 | + runs-on: ubuntu-latest |
| 86 | + ##needs: [scala3-library-nonbootstrapped] Add when we add support for caching here |
| 87 | + steps: |
| 88 | + - name: Git Checkout |
| 89 | + uses: actions/checkout@v4 |
| 90 | + |
| 91 | + - name: Set up JDK 17 |
| 92 | + uses: actions/setup-java@v4 |
| 93 | + with: |
| 94 | + distribution: 'temurin' |
| 95 | + java-version: 17 |
| 96 | + cache: 'sbt' |
| 97 | + - uses: sbt/setup-sbt@v1 |
| 98 | + - name: Compile `tasty-core-nonbootstrapped` |
| 99 | + run: ./project/scripts/sbt tasty-core-nonbootstrapped/compile |
| 100 | + |
| 101 | + scala3-compiler-nonbootstrapped: |
| 102 | + runs-on: ubuntu-latest |
| 103 | + ##needs: [tasty-core-nonbootstrapped, scala3-library-nonbootstrapped] Add when we add support for caching here |
| 104 | + steps: |
| 105 | + - name: Git Checkout |
| 106 | + uses: actions/checkout@v4 |
| 107 | + |
| 108 | + - name: Set up JDK 17 |
| 109 | + uses: actions/setup-java@v4 |
| 110 | + with: |
| 111 | + distribution: 'temurin' |
| 112 | + java-version: 17 |
| 113 | + cache: 'sbt' |
| 114 | + - uses: sbt/setup-sbt@v1 |
| 115 | + - name: Compile `scala3-compiler-nonbootstrapped` |
| 116 | + run: ./project/scripts/sbt scala3-compiler-nonbootstrapped/compile |
| 117 | + |
| 118 | + scala3-sbt-bridge-nonbootstrapped: |
| 119 | + runs-on: ubuntu-latest |
| 120 | + ##needs: [scala3-compiler-nonbootstrapped] Add when we add support for caching here |
| 121 | + steps: |
| 122 | + - name: Git Checkout |
| 123 | + uses: actions/checkout@v4 |
| 124 | + |
| 125 | + - name: Set up JDK 17 |
| 126 | + uses: actions/setup-java@v4 |
| 127 | + with: |
| 128 | + distribution: 'temurin' |
| 129 | + java-version: 17 |
| 130 | + cache: 'sbt' |
| 131 | + - uses: sbt/setup-sbt@v1 |
| 132 | + - name: Compile `scala3-sbt-bridge-nonbootstrapped` |
| 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 |
| 185 | + |
| 186 | + scala3-staging: |
| 187 | + runs-on: ubuntu-latest |
| 188 | + ##needs: [scala3-compiler-bootstrapped] Add when we add support for caching here |
| 189 | + steps: |
| 190 | + - name: Git Checkout |
| 191 | + uses: actions/checkout@v4 |
| 192 | + |
| 193 | + - name: Set up JDK 17 |
| 194 | + uses: actions/setup-java@v4 |
| 195 | + with: |
| 196 | + distribution: 'temurin' |
| 197 | + java-version: 17 |
| 198 | + cache: 'sbt' |
| 199 | + - uses: sbt/setup-sbt@v1 |
| 200 | + - name: Compile `scala3-staging` |
| 201 | + run: ./project/scripts/sbt scala3-staging-new/compile |
| 202 | + |
| 203 | + scala3-tasty-inspector: |
| 204 | + runs-on: ubuntu-latest |
| 205 | + ##needs: [scala3-compiler-bootstrapped] Add when we add support for caching here |
| 206 | + steps: |
| 207 | + - name: Git Checkout |
| 208 | + uses: actions/checkout@v4 |
| 209 | + |
| 210 | + - name: Set up JDK 17 |
| 211 | + uses: actions/setup-java@v4 |
| 212 | + with: |
| 213 | + distribution: 'temurin' |
| 214 | + java-version: 17 |
| 215 | + cache: 'sbt' |
| 216 | + - uses: sbt/setup-sbt@v1 |
| 217 | + - name: Compile `scala3-staging` |
| 218 | + run: ./project/scripts/sbt scala3-staging-new/compile |
| 219 | + - name: Compile `scala3-tasty-inspector` |
| 220 | + run: ./project/scripts/sbt scala3-tasty-inspector-new/compile |
| 221 | + |
| 222 | + ################################################################################################# |
| 223 | + ########################################### TEST JOBS ########################################### |
| 224 | + ################################################################################################# |
| 225 | + |
| 226 | + test-scala3-sbt-bridge-nonbootstrapped: |
| 227 | + runs-on: ubuntu-latest |
| 228 | + ##needs: [scala3-sbt-bridge-nonbootstrapped] Add when we add support for caching here |
| 229 | + steps: |
| 230 | + - name: Git Checkout |
| 231 | + uses: actions/checkout@v4 |
| 232 | + |
| 233 | + - name: Set up JDK 17 |
| 234 | + uses: actions/setup-java@v4 |
| 235 | + with: |
| 236 | + distribution: 'temurin' |
| 237 | + java-version: 17 |
| 238 | + cache: 'sbt' |
| 239 | + - uses: sbt/setup-sbt@v1 |
| 240 | + - name: Test `scala3-sbt-bridge-nonbootstrapped` |
| 241 | + run: ./project/scripts/sbt scala3-sbt-bridge-nonbootstrapped/test |
| 242 | + |
| 243 | + test-scala3-sbt-bridge-bootstrapped: |
| 244 | + runs-on: ubuntu-latest |
| 245 | + ##needs: [scala3-sbt-bridge-bootstrapped] Add when we add support for caching here |
| 246 | + steps: |
| 247 | + - name: Git Checkout |
| 248 | + uses: actions/checkout@v4 |
| 249 | + |
| 250 | + - name: Set up JDK 17 |
| 251 | + uses: actions/setup-java@v4 |
| 252 | + with: |
| 253 | + distribution: 'temurin' |
| 254 | + java-version: 17 |
| 255 | + cache: 'sbt' |
| 256 | + - uses: sbt/setup-sbt@v1 |
| 257 | + - name: Test `scala3-sbt-bridge-bootstrapped` |
| 258 | + run: ./project/scripts/sbt scala3-sbt-bridge-bootstrapped/test |
| 259 | + |
| 260 | + test-tasty-core-nonbootstrapped: |
| 261 | + runs-on: ubuntu-latest |
| 262 | + ##needs: [tasty-core-nonbootstrapped] Add when we add support for caching here |
| 263 | + steps: |
| 264 | + - name: Git Checkout |
| 265 | + uses: actions/checkout@v4 |
| 266 | + |
| 267 | + - name: Set up JDK 17 |
| 268 | + uses: actions/setup-java@v4 |
| 269 | + with: |
| 270 | + distribution: 'temurin' |
| 271 | + java-version: 17 |
| 272 | + cache: 'sbt' |
| 273 | + - uses: sbt/setup-sbt@v1 |
| 274 | + - name: Test `tasty-core-nonbootstrapped` |
| 275 | + run: ./project/scripts/sbt tasty-core-nonbootstrapped/test |
| 276 | + |
| 277 | + test-tasty-core-bootstrapped: |
| 278 | + runs-on: ubuntu-latest |
| 279 | + ##needs: [tasty-core-bootstrapped] Add when we add support for caching here |
| 280 | + steps: |
| 281 | + - name: Git Checkout |
| 282 | + uses: actions/checkout@v4 |
| 283 | + |
| 284 | + - name: Set up JDK 17 |
| 285 | + uses: actions/setup-java@v4 |
| 286 | + with: |
| 287 | + distribution: 'temurin' |
| 288 | + java-version: 17 |
| 289 | + cache: 'sbt' |
| 290 | + - uses: sbt/setup-sbt@v1 |
| 291 | + - name: Test `tasty-core-bootstrapped` |
| 292 | + run: ./project/scripts/sbt tasty-core-bootstrapped-new/test |
0 commit comments