diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 00:28:05 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 00:28:05 +0100 |
commit | f36d5fe5055df9f6b867b6d6056b6b15e44f6db3 (patch) | |
tree | baf1431e854375f2863838f9f440320b3500397d /.github/workflows | |
parent | make .gitattributes more consistent (diff) | |
download | aes-tools-f36d5fe5055df9f6b867b6d6056b6b15e44f6db3.tar.gz aes-tools-f36d5fe5055df9f6b867b6d6056b6b15e44f6db3.zip |
workflows/ci: actualize runner OSes
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64cca6d..0717430 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: build: strategy: matrix: - toolset: [mingw, vs2015, vs2017, vs2019] + toolset: [mingw, vs2019] platform: [x64, x86] use_asm: [1, 0] configuration: [Debug, Release] @@ -20,8 +20,6 @@ jobs: # MinGW builds are done on Linux, since it's more up-to-date there, # and it's much faster. - {toolset: mingw, os: ubuntu-latest} - - {toolset: vs2015, os: windows-2016} - - {toolset: vs2017, os: windows-2016} - {toolset: vs2019, os: windows-2019} exclude: - {platform: x64, use_asm: 1} |