diff options
author | glx22 <glx@openttd.org> | 2021-01-25 19:28:23 +0100 |
---|---|---|
committer | Loïc Guilloux <glx22@users.noreply.github.com> | 2021-02-13 17:31:57 +0100 |
commit | f181037bede9dd41b845a3a6e4c4ce6eaf57fe3d (patch) | |
tree | f98ffc9e27614e1bba76b6f1862fb65659d0c49e /.github/workflows | |
parent | 5a4d5f03b088a29ca33b52354369d68c6f0b04ee (diff) | |
download | openttd-f181037bede9dd41b845a3a6e4c4ce6eaf57fe3d.tar.xz |
Change: [Actions] Also run CI for VS2017
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci-build.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 9833d5e51..029c0416e 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -211,11 +211,10 @@ jobs: strategy: fail-fast: false matrix: - include: - - arch: x86 - - arch: x64 + os: [windows-latest, windows-2016] + arch: [x86, x64] - runs-on: windows-latest + runs-on: ${{ matrix.os }} steps: - name: Checkout |