Jelajahi Sumber

build system: avoid using windows-2016 (deprecated by GH)

Michele Caini 4 tahun lalu
induk
melakukan
072ab88721
1 mengubah file dengan 1 tambahan dan 7 penghapusan
  1. 1 7
      .github/workflows/build.yml

+ 1 - 7
.github/workflows/build.yml

@@ -84,20 +84,14 @@ jobs:
 
     strategy:
       matrix:
-        os: [windows-latest, windows-2016]
         toolset: [clang-cl, default, v141]
         include:
           - toolset: clang-cl
             toolset_option: -T"ClangCl"
           - toolset: v141
             toolset_option: -T"v141"
-        exclude:
-          - os: windows-2016
-            toolset: clang-cl
-          - os: windows-2016
-            toolset: v141
 
-    runs-on: ${{ matrix.os }}
+    runs-on: windows-latest
 
     steps:
     - uses: actions/checkout@v2