🐛 Fixed missing dx9 sdk install step

This commit is contained in:
2021-09-20 14:34:09 +02:00
parent 44cda183ed
commit 4686ebc64f
2 changed files with 9 additions and 9 deletions

View File

@ -12,14 +12,10 @@ jobs:
fail-fast: false
matrix:
config:
- name: Ubuntu 20.04
os: ubuntu-20.04
- name: Ubuntu 18.04
os: ubuntu-18.04
- name: VS 2017
os: windows-2016
- name: VS 2019
os: windows-2019
- name: Ubuntu
os: ubuntu-latest
- name: Windows
os: windows-latest
name: ${{ matrix.config.name }}
steps:
@ -36,6 +32,10 @@ jobs:
conan profile new default --detect
conan profile update settings.compiler.libcxx=libstdc++11 default
- name: Install DX9 SDK
if: startsWith(matrix.config.os, 'windows')
run: choco install directx-sdk -y
- name: Run
env:
CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_LOGIN_USERNAME }}