diff options
| author | James McCoy <jamessan@jamessan.com> | 2021-10-23 21:38:58 -0400 |
|---|---|---|
| committer | Dundar Göc <gocdundar@gmail.com> | 2022-02-20 10:18:45 +0100 |
| commit | 921162a4b1d4c3e3948e1e4ffa960cbdb9e933b7 (patch) | |
| tree | cb505f41ac5a2fb71bf3b8d927c2b072e6f28b93 /.github/workflows | |
| parent | 8b3799e2c33282bf417ddee15ae71b5aba613c16 (diff) | |
| download | rneovim-921162a4b1d4c3e3948e1e4ffa960cbdb9e933b7.tar.gz rneovim-921162a4b1d4c3e3948e1e4ffa960cbdb9e933b7.tar.bz2 rneovim-921162a4b1d4c3e3948e1e4ffa960cbdb9e933b7.zip | |
ci: bump Windows image to windows-2019
The VS 2019 CMake generator no longer has different generator types for
different architectures. Now, the architecture is specified via CMake's
`-A` switch. However, this requires we also propagate
`${CMAKE_GENERATOR_PLATFORM}` to the bundled deps, so they build for the
same architecture as Nvim.
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 34b73e8ef4..c94729182c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -180,7 +180,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 b72c2ab71d..0e04bd8fa3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -114,7 +114,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) }} |