From 67fefed62fa9e86ca21a0a9eb5a9e21ae9751122 Mon Sep 17 00:00:00 2001 From: LecomteAdrien Date: Mon, 2 Nov 2020 09:14:36 +0100 Subject: [PATCH 1/3] Add .circleci/config.yml --- .circleci/config.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..e9868b6 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,15 @@ +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: # 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: + # Commands are run in a Windows virtual machine environment + - checkout + - run: Write-Host 'Hello, Windows' From c8ac6a0ce4601c0b3122402c608014678a8600fd Mon Sep 17 00:00:00 2001 From: LecomteAdrien Date: Mon, 2 Nov 2020 09:42:49 +0100 Subject: [PATCH 2/3] helloworld --- .circleci/config.yml | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e9868b6..3d3830b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,15 +1,11 @@ -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. - +version: 2.1 jobs: - 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 - + build: + docker: + - image: cimg/node:14.10.1 # the primary container, where your job's commands are run + auth: + username: mydockerhub-user + password: $DOCKERHUB_PASSWORD # context / project UI env-var reference steps: - # Commands are run in a Windows virtual machine environment - - checkout - - run: Write-Host 'Hello, Windows' + - checkout # check out the code in the project directory + - run: echo "hello world" # run the `echo` command \ No newline at end of file From 64a60b05550e90394be4c47d321da62c46c285a1 Mon Sep 17 00:00:00 2001 From: LecomteAdrien Date: Mon, 2 Nov 2020 09:46:46 +0100 Subject: [PATCH 3/3] update --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3d3830b..39f08f1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,4 +8,5 @@ jobs: password: $DOCKERHUB_PASSWORD # context / project UI env-var reference steps: - checkout # check out the code in the project directory - - run: echo "hello world" # run the `echo` command \ No newline at end of file + - run: echo "hello world" # run the `echo` command qsdsqd + \ No newline at end of file