-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: create smoke-publish-test.sh scripts
This makes it easier to debug this test locally. Previously this was avoided because the test will install npm globally and prune deps which can be disruptive to a local checkout. This is somewhat mitigated now with some cleanup and better messaging when run locally.
- Loading branch information
1 parent
1524cfd
commit 1f4d73c
Showing
9 changed files
with
109 additions
and
130 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 |
---|---|---|
|
@@ -217,27 +217,8 @@ jobs: | |
run: node scripts/git-dirty.js | ||
- name: Reset Deps | ||
run: node scripts/resetdeps.js | ||
- name: Pack | ||
env: | ||
SMOKE_PUBLISH_NPM: 1 | ||
run: | | ||
NPM_VERSION="$(node . --version)-$GITHUB_SHA.0" | ||
node . version $NPM_VERSION --ignore-scripts | ||
node scripts/publish.js --pack-destination=$RUNNER_TEMP | ||
export SMOKE_PUBLISH_TARBALL="$RUNNER_TEMP/npm-$NPM_VERSION.tgz" | ||
node . install --global $SMOKE_PUBLISH_TARBALL | ||
node . install -w smoke-tests --ignore-scripts --no-audit --no-fund | ||
# call installed npm instead of local source since we are testing | ||
# the packed tarball that we just installed globally | ||
NPM_GLOBAL_VERSION="$(npm --version)" | ||
npm help | ||
if [ "$NPM_GLOBAL_VERSION" == "$NPM_VERSION" ]; then | ||
npm test -w smoke-tests --ignore-scripts | ||
else | ||
echo "global npm is not the correct version for smoke-publish" | ||
echo "found: $NPM_GLOBAL_VERSION, expected: $NPM_VERSION" | ||
exit 1 | ||
fi | ||
- name: Smoke Publish | ||
run: ./scripts/smoke-publish-test.sh | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eo pipefail | ||
|
||
IS_LOCAL="false" | ||
|
||
if [ -z "$CI" ]; then | ||
echo "Running locally will overwrite your globally installed npm." | ||
read -p "Press any key to continue" | ||
GITHUB_SHA=$(git rev-parse HEAD) | ||
RUNNER_TEMP=$(mktemp -d) | ||
IS_LOCAL="true" | ||
fi | ||
|
||
if [ -z "$GITHUB_SHA" ]; then | ||
echo "GITHUB_SHA is required" | ||
exit 1 | ||
fi | ||
|
||
if [ -z "$RUNNER_TEMP" ]; then | ||
echo "RUNNER_TEMP is required" | ||
exit 1 | ||
fi | ||
|
||
# Version the local source of npm with the current git sha and | ||
# and pack and install it globally the same way we would if we | ||
# were publishing it to the registry. The only difference is in the | ||
# publish.js script which will only pack and not publish | ||
ORIGINAL_NPM_VERSION=$(node . --version) | ||
NPM_VERSION="$ORIGINAL_NPM_VERSION-$GITHUB_SHA.0" | ||
|
||
# Only cleanup locally | ||
if [ "$IS_LOCAL" == "true" ]; then | ||
function cleanup { | ||
echo "===================================" | ||
echo "===================================" | ||
echo "Cleaning up" | ||
echo "===================================" | ||
echo "===================================" | ||
npm pkg set version=$ORIGINAL_NPM_VERSION | ||
node scripts/resetdeps.js | ||
if [ "$(npm --version)" == "$NPM_VERSION" ]; then | ||
echo "===================================" | ||
echo "===================================" | ||
echo "Global npm version has changed to $NPM_VERSION" | ||
echo "You should change it back to using" | ||
echo "npm install npm@$ORIGINAL_NPM_VERSION -g" | ||
echo "===================================" | ||
echo "===================================" | ||
fi | ||
} | ||
trap cleanup EXIT | ||
fi | ||
|
||
node . version $NPM_VERSION --ignore-scripts --no-git-tag-version | ||
node scripts/publish.js --pack-destination=$RUNNER_TEMP --smoke-publish=true --is-local="$IS_LOCAL" | ||
NPM_TARBALL="$RUNNER_TEMP/npm-$NPM_VERSION.tgz" | ||
node . install --global $NPM_TARBALL | ||
|
||
# Only run the tests if we are sure we have the right version | ||
# otherwise the tests being run are pointless | ||
NPM_GLOBAL_VERSION="$(npm --version)" | ||
if [ "$NPM_GLOBAL_VERSION" != "$NPM_VERSION" ]; then | ||
echo "global npm is not the correct version for smoke-publish" | ||
echo "found: $NPM_GLOBAL_VERSION, expected: $NPM_VERSION" | ||
exit 1 | ||
fi | ||
|
||
# Install dev deps only for smoke tests so they can be run | ||
node . install -w smoke-tests --ignore-scripts --no-audit --no-fund | ||
# Run smoke tests with env vars so it uses the globally installed tarball we | ||
# just packed/installed. The tacked on args at the end are only used for | ||
# debugging locally when we want to pass args to the smoke-tests to limit the | ||
# files being run or grep a test, etc. Also now set CI=true so we get more | ||
# debug output in our tap tests | ||
CI="true" SMOKE_PUBLISH_NPM="1" SMOKE_PUBLISH_TARBALL="$NPM_TARBALL" npm test \ | ||
-w smoke-tests \ | ||
--ignore-scripts \ | ||
-- -Rtap "$@" |
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 |
---|---|---|
|
@@ -11,27 +11,8 @@ | |
jobCreateCheck=(obj sha="${{ inputs.check-sha }}") | ||
windowsCI=false | ||
}} | ||
- name: Pack | ||
env: | ||
SMOKE_PUBLISH_NPM: 1 | ||
run: | | ||
NPM_VERSION="$({{ rootNpmPath }} --version)-$GITHUB_SHA.0" | ||
{{ rootNpmPath }} version $NPM_VERSION --ignore-scripts | ||
node scripts/publish.js --pack-destination=$RUNNER_TEMP | ||
export SMOKE_PUBLISH_TARBALL="$RUNNER_TEMP/npm-$NPM_VERSION.tgz" | ||
{{ rootNpmPath }} install --global $SMOKE_PUBLISH_TARBALL | ||
{{ rootNpmPath }} install -w smoke-tests --ignore-scripts --no-audit --no-fund | ||
# call installed npm instead of local source since we are testing | ||
# the packed tarball that we just installed globally | ||
NPM_GLOBAL_VERSION="$(npm --version)" | ||
npm help | ||
if [ "$NPM_GLOBAL_VERSION" == "$NPM_VERSION" ]; then | ||
npm test -w smoke-tests --ignore-scripts | ||
else | ||
echo "global npm is not the correct version for smoke-publish" | ||
echo "found: $NPM_GLOBAL_VERSION, expected: $NPM_VERSION" | ||
exit 1 | ||
fi | ||
- name: Smoke Publish | ||
run: ./scripts/smoke-publish-test.sh | ||
- name: Conclude Check | ||
uses: LouisBrunner/[email protected] | ||
if: always() | ||
|
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