File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,12 @@ executors:
61
61
resource_class : windows.medium
62
62
shell : powershell.exe -ExecutionPolicy Bypass
63
63
machine :
64
- image : windows-server-2019
64
+ # Windows preview image that includes the following:
65
+ # - Visual Studio 2019 build tools
66
+ # - Node 12
67
+ # - yarn 1.17
68
+ # - Python 3 3.7.4
69
+ image : windows-server-2019-vs2019:201908-02
65
70
66
71
# Command Definitions
67
72
# https://circleci.com/docs/2.0/reusing-config/#authoring-reusable-commands
@@ -76,7 +81,7 @@ commands:
76
81
- run :
77
82
# Need to install node and yarn before to ensure correct versions.
78
83
name : Setup windows node environment
79
- command : ./.circleci/windows-env.ps1
84
+ command : ./.circleci/windows-env.ps1
80
85
- run : node --version
81
86
- run : yarn --version
82
87
@@ -298,7 +303,7 @@ jobs:
298
303
executor : windows-executor
299
304
steps :
300
305
- custom_attach_workspace
301
- - setup_windows
306
+ - setup_windows
302
307
- restore_cache :
303
308
keys :
304
309
- *cache_key_win
@@ -315,7 +320,7 @@ jobs:
315
320
- persist_to_workspace :
316
321
root : *workspace_location
317
322
paths :
318
- - ./*
323
+ - ./*
319
324
320
325
test-win :
321
326
executor : windows-executor
@@ -416,7 +421,7 @@ workflows:
416
421
- build
417
422
- flake-jail :
418
423
requires :
419
- - build
424
+ - build
420
425
421
426
# Windows jobs
422
427
# These jobs only run after their non-windows counterparts finish successfully.
Original file line number Diff line number Diff line change 1
1
# Install nodejs and yarn via Chocolatey.
2
- choco install nodejs -- version 12.1 .0 -- no- progress
3
- choco install yarn -- version 1.17 .3 -- no- progress
2
+ # choco install nodejs --version 12.1.0 --no-progress
3
+ # choco install yarn --version 1.17.3 --no-progress
4
4
5
5
# Add PATH modifications to the Powershell profile. This is the win equivalent of .bash_profile.
6
6
# https://docs.microsoft.com/en-us/previous-versions//bb613488(v=vs.85)
You can’t perform that action at this time.
0 commit comments