github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/circle/testdata/executor/windows-cloud-orb.yaml (about) 1 # https://circleci.com/docs/executor-intro/#windows 2 3 version: 2.1 4 5 orbs: 6 win: circleci/windows@4.1.1 # The Windows orb gives you everything you need to start using the Windows executor 7 8 jobs: 9 build: # name of your job 10 executor: win/server-2022 # use one of the executors defined within the windows orb 11 12 steps: 13 # Commands are run in a Windows virtual machine environment 14 - checkout 15 - run: Write-Host 'Hello, Windows' 16 17 workflows: 18 build: 19 jobs: 20 - build