diff options
| author | James McCoy <jamessan@jamessan.com> | 2022-02-25 07:10:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-25 07:10:29 -0500 |
| commit | 005a7aa1670841dfdffb7559161a7d37d6c14bc4 (patch) | |
| tree | 5cf9098022f70307bb56af5a547130706ed0ee34 /.github/workflows | |
| parent | fdea15723fab6a3ee96218f13669d9f2e0a6d6d7 (diff) | |
| parent | 82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8 (diff) | |
| download | rneovim-005a7aa1670841dfdffb7559161a7d37d6c14bc4.tar.gz rneovim-005a7aa1670841dfdffb7559161a7d37d6c14bc4.tar.bz2 rneovim-005a7aa1670841dfdffb7559161a7d37d6c14bc4.zip | |
Merge pull request #17467 from dundargoc/ci/remove-failing-windows
ci: remove failing windows CI tests
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bc2e64475..94da9ec6f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -207,7 +207,7 @@ jobs: run: ./ci/before_cache.sh windows: - runs-on: windows-2016 + runs-on: windows-2019 if: github.event.pull_request.draft == false env: DEPS_BUILD_DIR: ${{ format('{0}/nvim-deps', github.workspace) }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 503db400ce..e954b57175 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -119,7 +119,7 @@ jobs: retention-days: 1 windows: - runs-on: windows-2016 + runs-on: windows-2019 env: DEPS_BUILD_DIR: ${{ format('{0}/nvim-deps', github.workspace) }} DEPS_PREFIX: ${{ format('{0}/nvim-deps/usr', github.workspace) }} |