diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-06 04:56:17 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-06 07:06:13 +0300 |
commit | a404df762f7859cd62eb88e90e38fe3442fe67d5 (patch) | |
tree | e4ef4b6001f363b2bb5b50c3d6244e031e324194 /.github/workflows | |
parent | refactoring (diff) | |
download | setup-clang-a404df762f7859cd62eb88e90e38fe3442fe67d5.tar.gz setup-clang-a404df762f7859cd62eb88e90e38fe3442fe67d5.zip |
setting up cc/converting symlinks is optional now
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 4 insertions, 0 deletions
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") |