We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a484d08 commit e81329dCopy full SHA for e81329d
.github/workflows/cmake_runner.yml
@@ -103,11 +103,11 @@ jobs:
103
run: echo ${{ matrix.config.generator }}
104
105
- name: Execute generated by VS
106
- if: ${{ matrix.config.generator }} == 'Visual Studio 17 2022'
+ if: contains(matrix.config.generator, 'Visual')
107
run: ${{ github.workspace }}\build\bin\${{ matrix.config.build_type }}\hw1.exe
108
109
- name: Execute
110
- if: ${{ matrix.config.generator }} != 'Visual Studio 17 2022'
+ if: !contains(matrix.config.generator, 'Visual')
111
working-directory: ${{ github.workspace }}/build/bin
112
run: .\hw1
113
0 commit comments