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

Disable Windows CI #495

Merged
merged 1 commit into from
Mar 7, 2023
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
3 changes: 1 addition & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,13 @@ jobs:
host: [
{ type: macos, os: macos-latest },
{ type: linux, os: ubuntu-latest, test-options: --enable-code-coverage },
{ type: windows, os: windows-latest },
]
swift: [
{ version: "5.7", windows-branch: "development", windows-tag: "DEVELOPMENT-SNAPSHOT-2023-02-14-a" }
]
runs-on: ${{ matrix.host.os }}
steps:
- name: Setup swift (non-Windows)
- name: Setup swift
uses: swift-actions/setup-swift@v1
if: matrix.host.type != 'windows'
with:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Please visit our [website](https://val-lang.dev) to get more information about t
This project is written in [Swift](https://swift.org) and distributed in the form of a package, built with [Swift Package Manager](https://swift.org/package-manager/).
You will need Swift 5.6 or higher to build the compiler from sources.

*Note to Windows users: although this project is **not** Unix-specific, Windows support has been put on hold due to the instability of continuous integration (see (#252)[https://github.com/val-lang/val/issues/252]).*

You may compile Val's compiler with the following commands:

```bash
Expand Down