diff options
| author | erw7 <erw7.github@gmail.com> | 2020-12-16 13:28:14 +0900 |
|---|---|---|
| committer | erw7 <erw7.github@gmail.com> | 2020-12-16 15:27:35 +0900 |
| commit | abdb2b4d29e7acaf04b7dd29536853e848765423 (patch) | |
| tree | bcff5f608c5dec779dba879b616c98e7d36fdbba /.github/workflows | |
| parent | d7051705d04686ca6887c54c84af0db02621398a (diff) | |
| download | rneovim-abdb2b4d29e7acaf04b7dd29536853e848765423.tar.gz rneovim-abdb2b4d29e7acaf04b7dd29536853e848765423.tar.bz2 rneovim-abdb2b4d29e7acaf04b7dd29536853e848765423.zip | |
GHA: fix build problems on Windows
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci_windows.yml | 15 |
1 files changed, 14 insertions, 1 deletions
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: |