-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore support for win7 and win-ia32
- Loading branch information
1 parent
78a5ab3
commit bf477d3
Showing
5 changed files
with
30,307 additions
and
9,505 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 |
---|---|---|
|
@@ -64,10 +64,11 @@ jobs: | |
- name: Use Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16.x' | ||
node-version: '14.x' | ||
|
||
- name: Npm Install | ||
run: | | ||
git config --global url."https://github.com".insteadOf ssh://[email protected] | ||
npm ci | ||
- name: Build and Publish | ||
|
@@ -89,6 +90,12 @@ jobs: | |
with: | ||
node-version: '16.x' | ||
|
||
- name: Install python2.7 | ||
run: | | ||
brew install pyenv | ||
pyenv install 2.7.18 | ||
pyenv global 2.7.18 | ||
- name: Npm Install | ||
run: | | ||
pip install setuptools | ||
|
@@ -101,7 +108,10 @@ jobs: | |
NODE_ENV: production | ||
NODE_OPTIONS: --max_old_space_size=8192 | ||
CSC_IDENTITY_AUTO_DISCOVERY: false | ||
run: npm run publish | ||
PYTHON_PATH: python | ||
run: | | ||
export PYTHON_PATH=$(pyenv root)/shims/python | ||
npm run publish | ||
build-linux: | ||
needs: create-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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Build Test App | |
|
||
on: | ||
push: | ||
branches: [ main ] | ||
branches: [ main, develop ] | ||
paths-ignore: | ||
- 'README.md' | ||
- 'CHANGE.md' | ||
|
@@ -18,10 +18,11 @@ jobs: | |
- name: Use Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16.x' | ||
node-version: '14.x' | ||
|
||
- name: Npm Install | ||
run: | | ||
git config --global url."https://github.com".insteadOf ssh://[email protected] | ||
npm ci | ||
- name: Build Dist | ||
|
@@ -48,6 +49,12 @@ jobs: | |
with: | ||
node-version: '16.x' | ||
|
||
- name: Install python2.7 | ||
run: | | ||
brew install pyenv | ||
pyenv install 2.7.18 | ||
pyenv global 2.7.18 | ||
- name: Npm Install | ||
run: | | ||
pip install setuptools | ||
|
@@ -59,7 +66,9 @@ jobs: | |
NODE_ENV: production | ||
NODE_OPTIONS: --max_old_space_size=8192 | ||
CSC_IDENTITY_AUTO_DISCOVERY: false | ||
run: npm run dist | ||
run: | | ||
export PYTHON_PATH=$(pyenv root)/shims/python | ||
npm run dist | ||
- name: Archive production artifacts | ||
uses: actions/upload-artifact@v2 | ||
|
Oops, something went wrong.