Skip to content

Commit

Permalink
fix: revert windows docker
Browse files Browse the repository at this point in the history
  • Loading branch information
drmohundro committed Sep 16, 2024
1 parent fa02185 commit 839a7e6
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,29 @@ jobs:
fail-fast: false
matrix:
include:
- image: swiftlang/swift:nightly-6.0-windowsservercore-1809
container:
image: ${{ matrix.image }}
- branch: swift-5.10-release
tag: 5.10-RELEASE
skip-testing: true

- branch: swift-6.0-branch
tag: 6.0-DEVELOPMENT-SNAPSHOT-2024-09-11-a
perform-testing: true

steps:
- name: Install Swift
uses: compnerd/gha-setup-swift@main
with:
branch: ${{ matrix.branch}}
tag: ${{ matrix.tag }}

- name: Checkout
uses: actions/checkout@v4
- name: Build
if: ${{ matrix.skip-testing }}
run: |
swift build
- name: Build and test
if: ${{ matrix.perform-testing }}
run: |
swift build --build-tests
swift test

0 comments on commit 839a7e6

Please sign in to comment.