From 60dbd57c3aff6b5c19ace5f88d9430f414394579 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 1 Jan 2021 12:14:10 +0300 Subject: Cygwin: proper executables instead of symlinks --- .github/workflows/test.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to '.github') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cb82575..3373d8d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,7 +52,6 @@ jobs: if: matrix.cygwin - name: Set up Clang - id: setup uses: ./ with: platform: '${{ matrix.platform }}' @@ -65,16 +64,14 @@ jobs: $flags += '-m32' } $flags += @( - '-x', 'c++', '-std=c++14', '-o', 'foo.exe', - 'foo.cpp', - '-lstdc++' + 'foo.cpp' ) if ('${{ runner.os }}' -eq 'Linux') { $flags += '-lpthread' } - & '${{ steps.setup.outputs.clangxx }}' $flags + clang++ $flags - name: Run foo.exe run: | -- cgit v1.2.3