Skip to content

Commit

Permalink
Add explicitly a SBT installation step during setup (#5179)
Browse files Browse the repository at this point in the history
Co-authored-by: Simon Dumas <[email protected]>
  • Loading branch information
imsdu and Simon Dumas authored Oct 14, 2024
1 parent 80b8089 commit 988692e
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci-delta-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Unit tests
run: |
sbt -Dsbt.color=always -Dsbt.supershell=false \
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-delta-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Unit tests
run: |
sbt -Dsbt.color=always -Dsbt.supershell=false \
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-delta-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Add hosts to /etc/hosts
run: |
sudo echo "127.0.0.1 other.my-domain.com" | sudo tee -a /etc/hosts
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-delta-ship.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Clean, build Delta & Storage images
run: |
sbt -Dsbt.color=always -Dsbt.supershell=false \
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-delta-static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Static analysis
run: |
sbt -Dsbt.color=always -Dsbt.supershell=false \
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-docs-ext-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Review
run: sbt "project docs" clean scalafmtCheck scalafmtSbtCheck paradox paradoxValidateLinks
2 changes: 2 additions & 0 deletions .github/workflows/ci-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,7 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Review
run: sbt "project docs" clean scalafmtCheck scalafmtSbtCheck paradox paradoxValidateInternalLinks
2 changes: 2 additions & 0 deletions .github/workflows/ci-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Clean, build Delta image
run: |
sbt -Dsbt.color=always -Dsbt.supershell=false \
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Set up proxy for docker buildx
run: |
echo http_proxy=${http_proxy} >> $GITHUB_ENV
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-release-sonatype.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,7 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Publish To Sonatype
run: sbt -Dsbt.color=always -Dsbt.supershell=false ci-release
2 changes: 2 additions & 0 deletions .github/workflows/ci-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
java-version: '21'
cache: 'sbt'
check-latest: true
- name: Setup SBT
uses: sbt/setup-sbt@v1
- name: Set up proxy for docker buildx
run: |
echo http_proxy=${http_proxy} >> $GITHUB_ENV
Expand Down

0 comments on commit 988692e

Please sign in to comment.