Skip to content

Commit 988692e

Browse files
imsduSimon Dumas
andauthored
Add explicitly a SBT installation step during setup (#5179)
Co-authored-by: Simon Dumas <simon.dumas@epfl.ch>
1 parent 80b8089 commit 988692e

11 files changed

+22
-0
lines changed

.github/workflows/ci-delta-app.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
java-version: '21'
2626
cache: 'sbt'
2727
check-latest: true
28+
- name: Setup SBT
29+
uses: sbt/setup-sbt@v1
2830
- name: Unit tests
2931
run: |
3032
sbt -Dsbt.color=always -Dsbt.supershell=false \

.github/workflows/ci-delta-core.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
java-version: '21'
3030
cache: 'sbt'
3131
check-latest: true
32+
- name: Setup SBT
33+
uses: sbt/setup-sbt@v1
3234
- name: Unit tests
3335
run: |
3436
sbt -Dsbt.color=always -Dsbt.supershell=false \

.github/workflows/ci-delta-plugins.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
java-version: '21'
3131
cache: 'sbt'
3232
check-latest: true
33+
- name: Setup SBT
34+
uses: sbt/setup-sbt@v1
3335
- name: Add hosts to /etc/hosts
3436
run: |
3537
sudo echo "127.0.0.1 other.my-domain.com" | sudo tee -a /etc/hosts

.github/workflows/ci-delta-ship.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
java-version: '21'
3434
cache: 'sbt'
3535
check-latest: true
36+
- name: Setup SBT
37+
uses: sbt/setup-sbt@v1
3638
- name: Clean, build Delta & Storage images
3739
run: |
3840
sbt -Dsbt.color=always -Dsbt.supershell=false \

.github/workflows/ci-delta-static-analysis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
java-version: '21'
2727
cache: 'sbt'
2828
check-latest: true
29+
- name: Setup SBT
30+
uses: sbt/setup-sbt@v1
2931
- name: Static analysis
3032
run: |
3133
sbt -Dsbt.color=always -Dsbt.supershell=false \

.github/workflows/ci-docs-ext-links.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ jobs:
1818
java-version: '21'
1919
cache: 'sbt'
2020
check-latest: true
21+
- name: Setup SBT
22+
uses: sbt/setup-sbt@v1
2123
- name: Review
2224
run: sbt "project docs" clean scalafmtCheck scalafmtSbtCheck paradox paradoxValidateLinks

.github/workflows/ci-docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ jobs:
2424
java-version: '21'
2525
cache: 'sbt'
2626
check-latest: true
27+
- name: Setup SBT
28+
uses: sbt/setup-sbt@v1
2729
- name: Review
2830
run: sbt "project docs" clean scalafmtCheck scalafmtSbtCheck paradox paradoxValidateInternalLinks

.github/workflows/ci-integration-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
java-version: '21'
2626
cache: 'sbt'
2727
check-latest: true
28+
- name: Setup SBT
29+
uses: sbt/setup-sbt@v1
2830
- name: Clean, build Delta image
2931
run: |
3032
sbt -Dsbt.color=always -Dsbt.supershell=false \

.github/workflows/ci-release-docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
java-version: '21'
2323
cache: 'sbt'
2424
check-latest: true
25+
- name: Setup SBT
26+
uses: sbt/setup-sbt@v1
2527
- name: Set up proxy for docker buildx
2628
run: |
2729
echo http_proxy=${http_proxy} >> $GITHUB_ENV

.github/workflows/ci-release-sonatype.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,7 @@ jobs:
2727
java-version: '21'
2828
cache: 'sbt'
2929
check-latest: true
30+
- name: Setup SBT
31+
uses: sbt/setup-sbt@v1
3032
- name: Publish To Sonatype
3133
run: sbt -Dsbt.color=always -Dsbt.supershell=false ci-release

0 commit comments

Comments
 (0)