From 8021d072588f2a3e9779615a77de14b28a5c929a Mon Sep 17 00:00:00 2001 From: pdarcas Date: Mon, 2 Nov 2020 09:48:57 +0100 Subject: [PATCH] hello-world3 --- .circleci/config.yml | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0f5ab71..b8a9e18 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,11 +1,25 @@ -version: 2.1 +version: 2.1 # Use version 2.1 to enable orb usage. + +orbs: + win: circleci/windows@2.2.0 # The Windows orb give you everything you need to start using the Windows executor. + jobs: - build: - docker: - - image: cimg/node:14.10.1 # the primary container, where your job's commands are run - auth: - username: pierre.darcas@hotmail.fr - password: $pdarcas12! # context / project UI env-var reference + build: # name of your job + executor: + name: win/default # executor type + size: "medium" # resource class, can be "medium", "large", "xlarge", "2xlarge", defaults to "medium" if not specified + steps: - - checkout # check out the code in the project directory - - run: echo "hello world" # run the `echo` command + # Commands are run in a Windows virtual machine environment + - checkout + - run: Write-Host 'Hello, Windows' + + + + + + + + + +