Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/community-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ permissions:

env:
DOTTY_CI_RUN: true
# Fix the SBT runner version to prevent the unpinned action from
# rolling it forward.
SBT_RUNNER_VERSION: '2.0.3'

jobs:

Expand All @@ -30,6 +33,8 @@ jobs:
java-version: 17
cache: 'sbt'
- uses: sbt/setup-sbt@v1
with:
sbt-runner-version: ${{ env.SBT_RUNNER_VERSION }}
- name: Run Community Build A
run: |
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestA"
Expand All @@ -49,6 +54,8 @@ jobs:
java-version: 17
cache: 'sbt'
- uses: sbt/setup-sbt@v1
with:
sbt-runner-version: ${{ env.SBT_RUNNER_VERSION }}
- name: Run Community Build B
run: |
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestB"
Expand All @@ -68,6 +75,8 @@ jobs:
java-version: 17
cache: 'sbt'
- uses: sbt/setup-sbt@v1
with:
sbt-runner-version: ${{ env.SBT_RUNNER_VERSION }}
- name: Run Community Build C
run: |
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestC"
38 changes: 0 additions & 38 deletions .github/workflows/publish-winget.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ jobs:
CONSUMER-KEY: ${{ secrets.SDKMAN_KEY }}
CONSUMER-TOKEN: ${{ secrets.SDKMAN_TOKEN }}

publish-winget:
uses: ./.github/workflows/publish-winget.yml
if: false && github.repository == 'scala/scala3' # TODO: Requires setting up initial WinGet package (keep the repository guard when enabling)
with:
version: ${{ inputs.version }}
secrets:
DOTTYBOT-TOKEN: ${{ secrets.DOTTYBOT_WINGET_TOKEN }}

compute-digest:
runs-on: ubuntu-latest
outputs:
Expand Down
Loading