From a404df762f7859cd62eb88e90e38fe3442fe67d5 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 6 Jan 2021 04:56:17 +0300 Subject: setting up cc/converting symlinks is optional now --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7348cbe..5b0444d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -56,6 +56,8 @@ jobs: with: platform: '${{ matrix.platform }}' cygwin: '${{ matrix.cygwin }}' + cc: 1 + hardlinks: 1 - name: Build foo.exe run: | @@ -87,9 +89,11 @@ jobs: - name: Check cc/c++ run: | + echo (Get-Command cc).Path $cc = & cc --version echo $cc $($cc | Select-String -Pattern "clang version" -SimpleMatch -Quiet) -or $(throw "Unexpected `cc --version` output") + echo (Get-Command c++).Path $cxx = & c++ --version echo $cxx $($cxx | Select-String -Pattern "clang version" -SimpleMatch -Quiet) -or $(throw "Unexpected `c++ --version` output") -- cgit v1.2.3