We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28efdf2 commit 1bef156Copy full SHA for 1bef156
.github/workflows/ci.yml
@@ -28,7 +28,11 @@ jobs:
28
test:
29
strategy:
30
matrix:
31
- os: [ windows-2019, ubuntu-20.04 ]
+ include:
32
+ - { os: windows-2019, visual-studio: 2017 }
33
+ - { os: windows-2019, visual-studio: 2019 }
34
+ - { os: windows-2019, visual-studio: 2022 }
35
+ - { os: ubuntu-20.04 }
36
runs-on: ${{ matrix.os }}
37
steps:
38
- name: Checkout
@@ -40,4 +44,4 @@ jobs:
40
44
- name: Install
41
45
run: pip install . --user
42
46
- name: Test
43
- run: ue4-docker build --target=build-prerequisites
47
+ run: ue4-docker build --target=build-prerequisites --visual-studio ${{ matrix.visual-studio || '2017' }}
0 commit comments