diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 04:37:20 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 04:37:24 +0100 |
commit | 4535330f96cef4106e76f8d401044d879cb39679 (patch) | |
tree | 197b9f6d321ab4469a6c9a1bdd68ae22821bb5e3 | |
parent | workflows/test: disable x86 Cygwin (diff) | |
download | setup-clang-4535330f96cef4106e76f8d401044d879cb39679.tar.gz setup-clang-4535330f96cef4106e76f8d401044d879cb39679.zip |
workflows/test: ignore Cygwin jobs for now
-rw-r--r-- | .github/workflows/test.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3194130..444dcfc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,6 +74,9 @@ jobs: hardlinks: [0, 1] runs-on: windows-latest name: 'Cygwin: hardlinks${{ matrix.hardlinks }}' + # As of January 2023, clang simply doesn't work on Cygwin. + # It's also marked "Unmaintained" in the installer. + continue-on-error: true steps: - name: Checkout uses: actions/checkout@v2 |