diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 03:25:26 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 03:35:12 +0100 |
commit | 74a1183273003db551fa57154deb282432a84063 (patch) | |
tree | 1830da2995835f240270cbe6e7bdd2672839be8e /.github/workflows/test.yml | |
parent | workflows/test: actualize runner OSes (diff) | |
download | setup-clang-74a1183273003db551fa57154deb282432a84063.tar.gz setup-clang-74a1183273003db551fa57154deb282432a84063.zip |
workflows/test: disable x86 Cygwin
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/test.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2b58ae3..3194130 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -71,10 +71,9 @@ jobs: cygwin: strategy: matrix: - platform: [x86, x64] hardlinks: [0, 1] runs-on: windows-latest - name: 'Cygwin: ${{ matrix.platform }} / hardlinks${{ matrix.hardlinks }}' + name: 'Cygwin: hardlinks${{ matrix.hardlinks }}' steps: - name: Checkout uses: actions/checkout@v2 @@ -82,12 +81,9 @@ jobs: uses: egor-tensin/cleanup-path@v1 - name: Install Cygwin uses: egor-tensin/setup-cygwin@v3 - with: - platform: '${{ matrix.platform }}' - name: Set up Clang uses: ./ with: - platform: '${{ matrix.platform }}' cygwin: 1 cc: 1 hardlinks: '${{ matrix.hardlinks }}' |