diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-11-11 13:08:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-11-11 13:14:12 +0300 |
commit | 69597a9c3f385eab20d1f84b047ea6d7a0e43150 (patch) | |
tree | cbdcbc508af026b0379d753a3e901d78218d869e /.github/workflows | |
parent | workflows/test: test VS 2022 (diff) | |
download | vs-shell-69597a9c3f385eab20d1f84b047ea6d7a0e43150.tar.gz vs-shell-69597a9c3f385eab20d1f84b047ea6d7a0e43150.zip |
workflows/test: view _MSC_VER
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c1fa8b0..6a339a9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,6 +46,8 @@ jobs: - name: cl.exe should be found now run: | $(Get-Command cl -ErrorAction SilentlyContinue) -or $(throw "cl.exe wasn't found!") + echo _MSC_VER > test.c + cl /nologo /EP test.c - name: Build foo.exe run: | |