Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: pause windows support for Swift 5.10 and above temporarily #250

Merged
merged 2 commits into from
Mar 22, 2024
Merged
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
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ jobs:
needs.ci.outputs.run == 'true'
needs: ci
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'windows-latest' && matrix.swift == 'latest' }}
concurrency:
group: integration-test-${{ github.ref }}-${{ matrix.os }}-${{ matrix.swift }}-${{ matrix.development }}
cancel-in-progress: true
Expand Down Expand Up @@ -353,6 +354,7 @@ jobs:
needs.ci.outputs.run == 'true'
needs: ci
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'windows-latest' }}
concurrency:
group: e2e-test-${{ github.ref }}-${{ matrix.os }}
cancel-in-progress: true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[GitHub Action](https://github.com/features/actions) that will setup [Swift](https://swift.org) environment with specified version.
This action supports the following functionalities:

- Works on Linux, macOS and Windows.
- Works on Linux, macOS and Windows(Swift 5.10 and after not supported on Windows).
- Supports [installing latest major/minor/patch](#specifying-version).
- Provides snapshots as soon as published in `swift.org`.
- Verifies toolchain snapshots before installation (`gpg` for Linux and Windows, `pkgutil` for macOS) .
Expand Down
5 changes: 3 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ inputs:
default: 'false'
check-latest:
description: >-
Whether to check with latest swift.org versions,
enabling this option may break this action,
Whether to use latest Swift toolchains available in swift.org,
instead of using the snapshot this action was tested with.
Enabling this option may break this action,
use cautiously and disable if any issue.
required: false
default: 'false'
Expand Down
Loading