-
-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
30 additions
and
27 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 |
---|---|---|
|
@@ -35,8 +35,8 @@ jobs: | |
set +e | ||
export NVM_DIR="/opt/circleci/.nvm" | ||
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" | ||
nvm install 14.20.1 | ||
nvm alias default v14.20.1 | ||
nvm install 20.8.1 | ||
nvm alias default v20.8.1 | ||
# Each step uses the same `$BASH_ENV`, so need to modify it | ||
echo 'export NVM_DIR="/opt/circleci/.nvm"' >> $BASH_ENV | ||
|
@@ -59,18 +59,18 @@ jobs: | |
sudo apt-get update | ||
sudo apt-get install rpm jq devscripts debhelper | ||
gem install package_cloud | ||
nvm use 14.20.1 | ||
nvm use 20.8.1 | ||
npm install --global [email protected] yarn | ||
- run: | ||
name: Install package dependencies | ||
command: | | ||
nvm use 14.20.1 | ||
nvm use 20.8.1 | ||
lerna bootstrap | ||
- run: | ||
name: Run unit tests | ||
command: | | ||
nvm use 14.20.1 | ||
nvm use 20.8.1 | ||
npm run test-unit | ||
- run: | ||
|
@@ -129,13 +129,13 @@ jobs: | |
- run: | ||
name: Make deb packages | ||
command: | | ||
nvm use 14.20.1 | ||
nvm use 20.8.1 | ||
make deb | ||
echo $DEB | tr ' ' '\n' | xargs -I{} cp -vr ../st2web_*.{deb,changes} ~/artifacts/{} | ||
- run: | ||
name: Make RPM packages | ||
command: | | ||
nvm use 14.20.1 | ||
nvm use 20.8.1 | ||
make rpm | ||
echo $RPM | tr ' ' '\n' | xargs -I{} cp -vr ../st2web-*.rpm ~/artifacts/{} | ||
- store_artifacts: | ||
|
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 |
---|---|---|
|
@@ -10,6 +10,10 @@ Changed | |
|
||
Contributed by @enykeev | ||
|
||
* Updated NodeJS to v20 current (security). #1010 | ||
|
||
Contributed by @enykeev | ||
|
||
Fixed | ||
~~~~~ | ||
* Fixed CircleCI tests by pinning [email protected]. #1008 | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:14.20.1 | ||
FROM node:20.8.1 | ||
|
||
# Create app directory | ||
WORKDIR /opt/stackstorm/static/webui/st2web | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:14.20.1 | ||
FROM node:20.8.1 | ||
|
||
# Create app directory | ||
WORKDIR /opt/stackstorm/static/webui/st2web | ||
|
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
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
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
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
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