Commit 6b9d840a authored by Chad Austin's avatar Chad Austin Committed by Facebook GitHub Bot

update all Windows jobs to windows-2019 (#1714)

Summary:
Pull Request resolved: https://github.com/facebook/folly/pull/1714

windows-2016 will be removed in March, and now that we've updated
Boost, we can upgrade to windows-2019.

Reviewed By: genevievehelsel

Differential Revision: D34119171

fbshipit-source-id: caad432bebf6b8282844bf79f82b1fbc34f2df9e
parent 39e19a49
......@@ -12,7 +12,7 @@ on:
jobs:
build:
runs-on: windows-2016
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Export boost environment
......
......@@ -906,12 +906,8 @@ class GenerateGitHubActionsCmd(ProjectCmdBase):
artifacts = "linux"
runs_on = f"ubuntu-{args.ubuntu_version}"
elif build_opts.is_windows():
# We're targeting the windows-2016 image because it has
# Visual Studio 2017 installed, and at the time of writing,
# the version of boost in the manifests (1.69) is not
# buildable with Visual Studio 2019
artifacts = "windows"
runs_on = "windows-2016"
runs_on = "windows-2019"
# The windows runners are python 3 by default; python2.exe
# is available if needed.
py3 = "python"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment