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/actions | |
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 '.github/actions')
-rw-r--r-- | .github/actions/build-foo-cygwin/action.yml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/actions/build-foo-cygwin/action.yml b/.github/actions/build-foo-cygwin/action.yml index 08fb820..5f110c5 100644 --- a/.github/actions/build-foo-cygwin/action.yml +++ b/.github/actions/build-foo-cygwin/action.yml @@ -1,9 +1,5 @@ name: Build foo.exe description: Build foo.exe (on Cygwin) -inputs: - platform: - description: Target platform - required: true runs: using: composite steps: @@ -14,7 +10,6 @@ runs: echo "$src_dir" src_dir="$( cygpath -ua "$src_dir" )" cd -- "$src_dir" - arch= - [ '${{ matrix.platform }}' == 'x86' ] && arch=-m32 - clang++ $arch -std=c++14 -o foo.exe foo.cpp + clang++ --version + clang++ -std=c++14 -o foo.exe foo.cpp shell: C:\tools\cygwin\bin\bash.exe --login --norc -eo pipefail -o igncr '{0}' |