summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2021-05-26 10:45:42 +1000
committerTony Cook <tony@develop-help.com>2021-05-27 09:33:41 +1000
commite5b416634d0055def68bf629b50aea1f831efda2 (patch)
tree7d2cbf5831734af72478de12326dcdad45be6ce9 /.github
parent97b09acf9d2e9385b839364d63dd8ed045bd7d3a (diff)
downloadperl-e5b416634d0055def68bf629b50aea1f831efda2.tar.gz
remove MSVC100/vcexpress2010 from CI, at least for now
Due to failing installation of VC express 2010, that version isn't being tested anyway, and is just producing errors. If we work out a solution for the missing download from Microsoft we can reinstate it, but at this point it's just noise reducing the utility CI gives us. This does not make VC2010 unsupported, it's purely a CI change.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/testsuite.yml44
1 files changed, 0 insertions, 44 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml
index 27c79ff675..b0d7078ed1 100644
--- a/.github/workflows/testsuite.yml
+++ b/.github/workflows/testsuite.yml
@@ -283,50 +283,6 @@ jobs:
#===============================================
- windows-msvc100:
- name: "Windows msvc100"
- runs-on: windows-latest
- timeout-minutes: 120
- needs: sanity_check
- if: needs.sanity_check.outputs.run_all_jobs == 'true'
-
- env:
- PERL_SKIP_TTY_TEST: 1
- CONTINUOUS_INTEGRATION: 1
-
- steps:
- - run: git config --global core.autocrlf false
- - uses: actions/checkout@v2
- with:
- fetch-depth: 10
- - uses: actions/cache@v2
- with:
- path: |
- ${{ github.workspace }}\choco-cache
- key: v2-msvc100
- - name: Set up MSVC100
- run: |
- choco config set cacheLocation "${{ github.workspace }}\choco-cache"
- choco install vcexpress2010
- - name: Help
- shell: cmd
- run: |
- call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" /help
- - name: Build
- shell: cmd
- run: |
- call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
- cd win32
- nmake CCTYPE=MSVC100 WIN64=undef
- - name: Run Tests
- shell: cmd
- run: |
- call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
- cd win32
- nmake CCTYPE=MSVC100 WIN64=undef test
-
- #===============================================
-
mingw64:
name: "Windows mingw64"
runs-on: windows-latest