mirror of https://gitee.com/openkylin/nodejs.git
44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Shell script to update postject in the source tree to the latest release.
|
||
|
|
||
|
# This script must be in the tools directory when it runs because it uses the
|
||
|
# script source file path to determine directories to work in.
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
ROOT=$(cd "$(dirname "$0")/../.." && pwd)
|
||
|
[ -z "$NODE" ] && NODE="$ROOT/out/Release/node"
|
||
|
[ -x "$NODE" ] || NODE=$(command -v node)
|
||
|
NPM="$ROOT/deps/npm/bin/npm-cli.js"
|
||
|
|
||
|
NEW_VERSION=$("$NODE" "$NPM" view postject dist-tags.latest)
|
||
|
CURRENT_VERSION=$("$NODE" -p "require('./test/fixtures/postject-copy/node_modules/postject/package.json').version")
|
||
|
|
||
|
echo "Comparing $NEW_VERSION with $CURRENT_VERSION"
|
||
|
|
||
|
if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then
|
||
|
echo "Skipped because Postject is on the latest version."
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
cd "$( dirname "$0" )/../.." || exit
|
||
|
rm -rf test/fixtures/postject-copy
|
||
|
mkdir test/fixtures/postject-copy
|
||
|
cd test/fixtures/postject-copy || exit
|
||
|
|
||
|
"$NODE" "$NPM" init --yes
|
||
|
|
||
|
"$NODE" "$NPM" install --no-bin-links --ignore-scripts "postject@$NEW_VERSION"
|
||
|
|
||
|
# TODO(RaisinTen): Replace following with $WORKSPACE
|
||
|
cd ../../..
|
||
|
rm -rf deps/postject
|
||
|
mkdir deps/postject
|
||
|
cp test/fixtures/postject-copy/node_modules/postject/LICENSE deps/postject
|
||
|
cp test/fixtures/postject-copy/node_modules/postject/dist/postject-api.h deps/postject
|
||
|
|
||
|
# The last line of the script should always print the new version,
|
||
|
# as we need to add it to $GITHUB_ENV variable.
|
||
|
echo "NEW_VERSION=$NEW_VERSION"
|