From abdb2b4d29e7acaf04b7dd29536853e848765423 Mon Sep 17 00:00:00 2001 From: erw7 Date: Wed, 16 Dec 2020 13:28:14 +0900 Subject: GHA: fix build problems on Windows --- .github/workflows/ci_windows.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci_windows.yml b/.github/workflows/ci_windows.yml index 45702087da..f12dde4816 100644 --- a/.github/workflows/ci_windows.yml +++ b/.github/workflows/ci_windows.yml @@ -10,7 +10,7 @@ env: jobs: test: - runs-on: windows-latest + runs-on: windows-2016 strategy: matrix: config: [ MINGW_64-gcov, MINGW_32, MSVC_64, MSVC_32 ] @@ -23,6 +23,19 @@ jobs: path: C:\projects\nvim-deps key: ${{ matrix.config }}-${{ hashFiles('third-party\**') }} + - uses: actions/setup-python@v2 + with: + pyhon-version: '2.7' + + - uses: actions/setup-python@v2 + with: + pyhon-version: '3.5' + + + - uses: actions/setup-node@v1 + with: + node-version: '12.x' + - name: Run CI run: powershell ci\build.ps1 env: -- cgit