-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: updates node in config.yml (#2533)
* Updates config.yml * Bump version to 2.21.1 * updates config.yml * Bump version to 2.21.2 * use 16.20 * Bump version to 2.21.3 * Adds back author to package.json to fix release bug * Bump version to 2.21.4 * Update windows build{ * Bump version to 2.21.5 * updates config.yml * Bump version to 2.21.6 * updates config.yml * Bump version to 2.21.7 * updates config.yml * Bump version to 2.21.8 * fix electron-devtools-installer error * Bump version to 2.21.9 * revert version bump
- Loading branch information
1 parent
55f7a76
commit eb66795
Showing
2 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ version: 2.1 | |
|
||
orbs: | ||
win: circleci/[email protected] | ||
node: circleci/[email protected] | ||
|
||
references: | ||
container_config: &container_config | ||
|
@@ -22,6 +23,10 @@ jobs: | |
<<: *container_config | ||
steps: | ||
- checkout | ||
- node/install: | ||
install-yarn: true | ||
node-version: '16.20' | ||
- run: node --version | ||
- restore_cache: | ||
key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }} | ||
- run: apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4EB27DB2A3B88B8B | ||
|
@@ -43,6 +48,10 @@ jobs: | |
resource_class: large | ||
steps: | ||
- checkout | ||
- node/install: | ||
install-yarn: true | ||
node-version: '16.20' | ||
- run: node --version | ||
- run: apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4EB27DB2A3B88B8B | ||
- run: apt-get -y update | ||
- run: apt-get -y install libusb-1.0-0-dev icnsutils graphicsmagick libudev-dev | ||
|
@@ -59,8 +68,11 @@ jobs: | |
xcode: "14.0.0" | ||
steps: | ||
- checkout | ||
- node/install: | ||
install-yarn: true | ||
node-version: '16.20' | ||
- run: node --version | ||
- run: yarn install --ignore-engines --frozen-lockfile --network-timeout 1000000 --network-concurrency 1 | ||
- run: npm --build-from-source install node-pre-gyp --force | ||
- run: yarn release:mac | ||
- store_artifacts: | ||
path: dist | ||
|
@@ -72,8 +84,8 @@ jobs: | |
size: "medium" | ||
steps: | ||
- checkout | ||
- run: npm install --global --production windows-build-tools --vs2015 | ||
- run: npm config set msvs_version 2015 -g | ||
- run: choco install nodejs --version=16.20.0 | ||
- run: node --version | ||
- run: choco install windows-sdk-8.1 | ||
- run: yarn install --ignore-engines --frozen-lockfile --network-timeout 1000000 --network-concurrency 1 | ||
- run: yarn release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
"main": "./main.js", | ||
"description": "Light wallet for NEO blockchain", | ||
"homepage": "https://github.com/CityOfZion/neon-wallet", | ||
"author": "Maxwell Lasky <[email protected]> (https://github.com/comountainclimber)", | ||
"scripts": { | ||
"audit:fix": "npm_config_yes=true npx yarn-audit-fix", | ||
"postinstall": "electron-builder install-app-deps", | ||
|
@@ -139,6 +140,7 @@ | |
"dotenv-cli": "^4.0.0", | ||
"ecc-jsbn": "0.2.0", | ||
"electron-context-menu": "0.9.1", | ||
"electron-devtools-installer": "3.2.0", | ||
"electron-json-storage": "4.6.0", | ||
"electron-log": "^4.2.4", | ||
"electron-save-file": "1.0.2", | ||
|
@@ -230,7 +232,6 @@ | |
"electron": "26.2.1", | ||
"electron-builder": "23.3.3", | ||
"electron-builder-notarize": "^1.2.0", | ||
"electron-devtools-installer": "3.2.0", | ||
"electron-packager": "15.5.0", | ||
"electron-rebuild": "^3.2.9", | ||
"enzyme": "3.7.0", | ||
|
@@ -313,4 +314,4 @@ | |
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setupTests.js", | ||
"testURL": "http://localhost" | ||
} | ||
} | ||
} |