Skip to content

Commit

Permalink
Regenerate GitHub Actions workflow
Browse files Browse the repository at this point in the history
Executed command: sbt githubWorkflowGenerate
  • Loading branch information
typelevel-steward[bot] committed Sep 27, 2024
1 parent 18bc327 commit c1a20c1
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-14]
scala: [3.3.3, 2.12.20, 2.13.14]
scala: [3.3.4, 2.12.20, 2.13.14]
java:
- temurin@8
- temurin@11
Expand All @@ -37,9 +37,9 @@ jobs:
- graalvm@17
ci: [ciJVM, ciNative, ciJS, ciFirefox, ciChrome]
exclude:
- scala: 3.3.3
- scala: 3.3.4
java: temurin@11
- scala: 3.3.3
- scala: 3.3.4
java: temurin@21
- scala: 2.12.20
java: temurin@11
Expand All @@ -50,10 +50,10 @@ jobs:
- scala: 2.12.20
java: graalvm@17
- os: windows-latest
scala: 3.3.3
scala: 3.3.4
ci: ciJVM
- os: macos-14
scala: 3.3.3
scala: 3.3.4
ci: ciJVM
- os: windows-latest
scala: 2.12.20
Expand All @@ -64,9 +64,9 @@ jobs:
- os: macos-14
java: temurin@8
- ci: ciFirefox
scala: 3.3.3
scala: 3.3.4
- ci: ciChrome
scala: 3.3.3
scala: 3.3.4
- ci: ciFirefox
scala: 2.12.20
- ci: ciChrome
Expand Down Expand Up @@ -239,24 +239,24 @@ jobs:
run: sbt githubWorkflowCheck

- name: Check that scalafix has been run on JVM
if: matrix.ci == 'ciJVM' && matrix.scala != '3.3.3' && matrix.java == 'temurin@8' && matrix.os == 'ubuntu-latest'
if: matrix.ci == 'ciJVM' && matrix.scala != '3.3.4' && matrix.java == 'temurin@8' && matrix.os == 'ubuntu-latest'
shell: bash
run: sbt '++ ${{ matrix.scala }}' 'rootJVM/scalafixAll --check'

- name: Check that scalafix has been run on JS
if: matrix.ci == 'ciJS' && matrix.scala != '3.3.3' && matrix.java == 'temurin@8' && matrix.os == 'ubuntu-latest'
if: matrix.ci == 'ciJS' && matrix.scala != '3.3.4' && matrix.java == 'temurin@8' && matrix.os == 'ubuntu-latest'
shell: bash
run: sbt '++ ${{ matrix.scala }}' 'rootJS/scalafixAll --check'

- name: Check that scalafix has been run on Native
if: matrix.ci == 'ciNative' && matrix.scala != '3.3.3' && matrix.java == 'temurin@8' && matrix.os == 'ubuntu-latest'
if: matrix.ci == 'ciNative' && matrix.scala != '3.3.4' && matrix.java == 'temurin@8' && matrix.os == 'ubuntu-latest'
shell: bash
run: sbt '++ ${{ matrix.scala }}' 'rootNative/scalafixAll --check'

- shell: bash
run: sbt '++ ${{ matrix.scala }}' '${{ matrix.ci }}'

- if: (matrix.scala == '2.13.14' || matrix.scala == '3.3.3') && matrix.ci == 'ciJVM' && matrix.java == 'temurin@17'
- if: (matrix.scala == '2.13.14' || matrix.scala == '3.3.4') && matrix.ci == 'ciJVM' && matrix.java == 'temurin@17'
shell: bash
run: sbt '++ ${{ matrix.scala }}' docs/mdoc

Expand Down Expand Up @@ -392,32 +392,32 @@ jobs:
if: matrix.java == 'graalvm@17' && steps.setup-java-graalvm-17.outputs.cache-hit == 'false'
run: sbt +update

- name: Download target directories (3.3.3, ciJVM)
- name: Download target directories (3.3.4, ciJVM)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.3-ciJVM
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.4-ciJVM

- name: Inflate target directories (3.3.3, ciJVM)
- name: Inflate target directories (3.3.4, ciJVM)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.3, ciNative)
- name: Download target directories (3.3.4, ciNative)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.3-ciNative
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.4-ciNative

- name: Inflate target directories (3.3.3, ciNative)
- name: Inflate target directories (3.3.4, ciNative)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.3, ciJS)
- name: Download target directories (3.3.4, ciJS)
uses: actions/download-artifact@v4
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.3-ciJS
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.4-ciJS

- name: Inflate target directories (3.3.3, ciJS)
- name: Inflate target directories (3.3.4, ciJS)
run: |
tar xf targets.tar
rm targets.tar
Expand Down

0 comments on commit c1a20c1

Please sign in to comment.