Hey Everyone,
The edge tag has been promoted to stable for the standard Windows image. Here are the changes:
- Go is now at v1.17.6
- Windows Studio 2019 is now at v16.11.9.0
- typical Windows Update updates, bug fixes, and security
You can use this image directly:
version: '2.1'
jobs:
build:
machine:
image: windows-server-2019-vs2019:stable
resource_class: windows.medium
steps:
- checkout
- run: 'Write-Host ''Hello, Windows'''
or via the Windows Orb:
version: '2.1'
orbs:
win: circleci/windows@2.4
jobs:
build:
executor:
name: win/default
size: medium
steps:
- checkout
- run: 'Write-Host ''Hello, Windows'''