From 8281ad9d95bdc63589b6ed33a5574ccad93699fb Mon Sep 17 00:00:00 2001 From: Rodri Sanchez Date: Tue, 1 Aug 2023 15:41:41 -0300 Subject: [PATCH 1/6] Update npm version to latest --- .circleci/config.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3aa69f6..8743b1c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -150,7 +150,13 @@ jobs: command: | nvm list nvm install 16.16.0 - nvm use 16.16.0 + npm install -g npm@latest + nvm use 16.16.0 + - run: + name: verify node and npm version + command: | + node -v + npm -v - run: name: Install cordova command: | @@ -196,6 +202,7 @@ workflows: branches: only: - master + - fix/circleciElectron - build_android: context: ccboard requires: @@ -212,3 +219,4 @@ workflows: branches: only: - master + - fix/circleciElectron From 1f1dc36768d2af5aa8ff4fa14845ff1c36e2493c Mon Sep 17 00:00:00 2001 From: Rodri Sanchez Date: Tue, 1 Aug 2023 15:57:51 -0300 Subject: [PATCH 2/6] Bump electron node version to 16.20.1 --- .circleci/config.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8743b1c..b63f0f1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -145,15 +145,14 @@ jobs: name: Install NVM command: choco install nvm - run: - name: Install Node 16.16.0 + name: Install Node 16.20.1 shell: bash.exe command: | nvm list - nvm install 16.16.0 - npm install -g npm@latest - nvm use 16.16.0 + nvm install 16.20.1 + nvm use 16.20.1 - run: - name: verify node and npm version + name: Verify node and npm version command: | node -v npm -v From 1bc68de60fd3a593e0e833382743213767312b59 Mon Sep 17 00:00:00 2001 From: Rodri Sanchez Date: Wed, 2 Aug 2023 22:45:19 -0300 Subject: [PATCH 3/6] wip --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b63f0f1..1bd3419 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -143,7 +143,9 @@ jobs: - checkout - run: name: Install NVM - command: choco install nvm + command: | + node -v + choco install nvm --version=1.1.9 - run: name: Install Node 16.20.1 shell: bash.exe @@ -156,6 +158,7 @@ jobs: command: | node -v npm -v + nvm version - run: name: Install cordova command: | From fc73eca6bb08799d71a18264f786a411584da501 Mon Sep 17 00:00:00 2001 From: Rodri Sanchez Date: Wed, 2 Aug 2023 22:57:04 -0300 Subject: [PATCH 4/6] wip --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1bd3419..ef5c8c2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -145,12 +145,13 @@ jobs: name: Install NVM command: | node -v + nvm version choco install nvm --version=1.1.9 - run: name: Install Node 16.20.1 - shell: bash.exe command: | nvm list + nvm uninstall 14.17.5 nvm install 16.20.1 nvm use 16.20.1 - run: From ef87f03cfd3b863bd8d53c62347a2dfafa284171 Mon Sep 17 00:00:00 2001 From: Rodri Sanchez Date: Wed, 2 Aug 2023 23:17:32 -0300 Subject: [PATCH 5/6] Bump windows orb --- .circleci/config.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ef5c8c2..72dbde6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: - win: circleci/windows@2.2.0 + win: circleci/windows@5.0 jobs: build_cboard: @@ -146,12 +146,10 @@ jobs: command: | node -v nvm version - choco install nvm --version=1.1.9 - run: name: Install Node 16.20.1 command: | nvm list - nvm uninstall 14.17.5 nvm install 16.20.1 nvm use 16.20.1 - run: From 59ca68fe6d6313ee8cc66b3fcc10b570ff7905f7 Mon Sep 17 00:00:00 2001 From: Rodri Sanchez Date: Wed, 2 Aug 2023 23:40:05 -0300 Subject: [PATCH 6/6] Remove test branch --- .circleci/config.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 72dbde6..e86af65 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -141,11 +141,6 @@ jobs: working_directory: ~/repo steps: - checkout - - run: - name: Install NVM - command: | - node -v - nvm version - run: name: Install Node 16.20.1 command: | @@ -153,7 +148,7 @@ jobs: nvm install 16.20.1 nvm use 16.20.1 - run: - name: Verify node and npm version + name: Verify node, npm and nvm version command: | node -v npm -v @@ -203,7 +198,6 @@ workflows: branches: only: - master - - fix/circleciElectron - build_android: context: ccboard requires: @@ -220,4 +214,3 @@ workflows: branches: only: - master - - fix/circleciElectron