Update build scripts.
This commit is contained in:
parent
48ac6cbcf8
commit
da6bd4168b
@ -627,8 +627,12 @@ js-test:
|
|||||||
- git submodule update --init --recursive
|
- git submodule update --init --recursive
|
||||||
- export JS_FILES_MODIFIED=$(git --no-pager diff --name-only $CI_BUILD_REF^ $CI_BUILD_REF | grep ^js/ | wc -l)
|
- export JS_FILES_MODIFIED=$(git --no-pager diff --name-only $CI_BUILD_REF^ $CI_BUILD_REF | grep ^js/ | wc -l)
|
||||||
- if [ $JS_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS deps install since no JS files modified."; else ./js/scripts/install-deps.sh;fi
|
- if [ $JS_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS deps install since no JS files modified."; else ./js/scripts/install-deps.sh;fi
|
||||||
|
- export JS_OLD_FILES_MODIFIED=$(git --no-pager diff --name-only $CI_BUILD_REF^ $CI_BUILD_REF | grep ^js-old/ | wc -l)
|
||||||
|
- if [ $JS_OLD_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS (old) deps install since no JS files modified."; else ./js-old/scripts/install-deps.sh;fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- if [ $JS_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS lint since no JS files modified."; else ./js/scripts/lint.sh && ./js/scripts/test.sh && ./js/scripts/build.sh; fi
|
- if [ $JS_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS lint since no JS files modified."; else ./js/scripts/lint.sh && ./js/scripts/test.sh && ./js/scripts/build.sh; fi
|
||||||
|
- if [ $JS_OLD_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS (old) lint since no JS files modified."; else ./js-old/scripts/lint.sh && ./js-old/scripts/test.sh && ./js-old/scripts/build.sh; fi
|
||||||
tags:
|
tags:
|
||||||
- rust
|
- rust
|
||||||
- rust-stable
|
- rust-stable
|
||||||
@ -679,10 +683,17 @@ js-release:
|
|||||||
- export JS_FILES_MODIFIED=$(git --no-pager diff --name-only $CI_BUILD_REF^ $CI_BUILD_REF | grep ^js/ | wc -l)
|
- export JS_FILES_MODIFIED=$(git --no-pager diff --name-only $CI_BUILD_REF^ $CI_BUILD_REF | grep ^js/ | wc -l)
|
||||||
- echo $JS_FILES_MODIFIED
|
- echo $JS_FILES_MODIFIED
|
||||||
- if [ $JS_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS deps install since no JS files modified."; else ./js/scripts/install-deps.sh;fi
|
- if [ $JS_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS deps install since no JS files modified."; else ./js/scripts/install-deps.sh;fi
|
||||||
|
- export JS_OLD_FILES_MODIFIED=$(git --no-pager diff --name-only $CI_BUILD_REF^ $CI_BUILD_REF | grep ^js-old/ | wc -l)
|
||||||
|
- echo $JS_OLD_FILES_MODIFIED
|
||||||
|
- if [ $JS_OLD_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS (old) deps install since no JS files modified."; else ./js-old/scripts/install-deps.sh;fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- rustup default stable
|
- rustup default stable
|
||||||
- echo $JS_FILES_MODIFIED
|
- echo $JS_FILES_MODIFIED
|
||||||
- if [ $JS_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS rebuild since no JS files modified."; else ./js/scripts/build.sh && ./js/scripts/release.sh; fi
|
- if [ $JS_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS rebuild since no JS files modified."; else ./js/scripts/build.sh && ./js/scripts/release.sh; fi
|
||||||
|
- echo $JS_OLD_FILES_MODIFIED
|
||||||
|
- if [ $JS_OLD_FILES_MODIFIED -eq 0 ]; then echo "Skipping JS (old) rebuild since no JS files modified."; else ./js-old/scripts/build.sh && ./js-old/scripts/release.sh; fi
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
- javascript
|
- javascript
|
||||||
push-release:
|
push-release:
|
||||||
|
@ -12,8 +12,8 @@ rustc_version = "0.1"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
parity-ui-dev = { path = "../../js", optional = true }
|
parity-ui-dev = { path = "../../js", optional = true }
|
||||||
parity-ui-old-dev = { path = "../../js-old", optional = true }
|
parity-ui-old-dev = { path = "../../js-old", optional = true }
|
||||||
parity-ui-old-precompiled = { git = "https://github.com/paritytech/js-precompiled.git", optional = true, branch = "v1" }
|
|
||||||
# This is managed by the js/scripts/release.sh script on CI - keep it in a single line
|
# This is managed by the js/scripts/release.sh script on CI - keep it in a single line
|
||||||
|
parity-ui-old-precompiled = { git = "https://github.com/paritytech/js-precompiled.git", optional = true, branch = "v1" }
|
||||||
parity-ui-precompiled = { git = "https://github.com/paritytech/js-precompiled.git", optional = true, branch = "master" }
|
parity-ui-precompiled = { git = "https://github.com/paritytech/js-precompiled.git", optional = true, branch = "master" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -4,7 +4,7 @@ set -e
|
|||||||
# variables
|
# variables
|
||||||
UTCDATE=`date -u "+%Y%m%d-%H%M%S"`
|
UTCDATE=`date -u "+%Y%m%d-%H%M%S"`
|
||||||
PACKAGES=( "parity" "etherscan" "shapeshift" "jsonrpc" )
|
PACKAGES=( "parity" "etherscan" "shapeshift" "jsonrpc" )
|
||||||
BRANCH=$CI_BUILD_REF_NAME
|
BRANCH="v1"
|
||||||
GIT_JS_PRECOMPILED="https://${GITHUB_JS_PRECOMPILED}:@github.com/paritytech/js-precompiled.git"
|
GIT_JS_PRECOMPILED="https://${GITHUB_JS_PRECOMPILED}:@github.com/paritytech/js-precompiled.git"
|
||||||
GIT_PARITY="https://${GITHUB_JS_PRECOMPILED}:@github.com/paritytech/parity.git"
|
GIT_PARITY="https://${GITHUB_JS_PRECOMPILED}:@github.com/paritytech/parity.git"
|
||||||
|
|
||||||
@ -57,40 +57,11 @@ setup_git_user
|
|||||||
git remote set-url origin $GIT_PARITY
|
git remote set-url origin $GIT_PARITY
|
||||||
git reset --hard origin/$BRANCH 2>$GITLOG
|
git reset --hard origin/$BRANCH 2>$GITLOG
|
||||||
|
|
||||||
if [ "$BRANCH" == "master" ]; then
|
echo "*** Updating cargo parity-ui-old-precompiled#$PRECOMPILED_HASH"
|
||||||
cd js
|
|
||||||
|
|
||||||
echo "*** Bumping package.json patch version"
|
|
||||||
npm --no-git-tag-version version
|
|
||||||
npm version patch
|
|
||||||
|
|
||||||
echo "*** Building packages for npmjs"
|
|
||||||
echo "$NPM_TOKEN" >> ~/.npmrc
|
|
||||||
|
|
||||||
# build jsonrpc
|
|
||||||
echo "*** Building JSONRPC .json"
|
|
||||||
mkdir -p .npmjs/jsonrpc
|
|
||||||
npm run ci:build:jsonrpc
|
|
||||||
|
|
||||||
for PACKAGE in ${PACKAGES[@]}
|
|
||||||
do
|
|
||||||
echo "*** Building $PACKAGE"
|
|
||||||
LIBRARY=$PACKAGE npm run ci:build:npm
|
|
||||||
DIRECTORY=.npmjs/$PACKAGE
|
|
||||||
|
|
||||||
echo "*** Publishing $PACKAGE from $DIRECTORY"
|
|
||||||
cd $DIRECTORY
|
|
||||||
npm publish --access public || true
|
|
||||||
cd ../..
|
|
||||||
done
|
|
||||||
|
|
||||||
cd ..
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "*** Updating cargo parity-ui-precompiled#$PRECOMPILED_HASH"
|
|
||||||
git submodule update
|
git submodule update
|
||||||
sed -i "/^parity-ui-precompiled/ { s/branch = \".*\"/branch = \"$BRANCH\"/g; }" dapps/ui/Cargo.toml
|
# Not needed since $BRANCH is hardcoded
|
||||||
cargo update -p parity-ui-precompiled
|
# sed -i "/^parity-ui-old-precompiled/ { s/branch = \".*\"/branch = \"$BRANCH\"/g; }" dapps/ui/Cargo.toml
|
||||||
|
cargo update -p parity-ui-old-precompiled
|
||||||
# --precise "$PRECOMPILED_HASH"
|
# --precise "$PRECOMPILED_HASH"
|
||||||
|
|
||||||
echo "*** Committing updated files"
|
echo "*** Committing updated files"
|
||||||
|
@ -5,7 +5,7 @@ set -e
|
|||||||
pushd `dirname $0`
|
pushd `dirname $0`
|
||||||
cd ../../
|
cd ../../
|
||||||
|
|
||||||
cargo update -p parity-ui-precompiled
|
cargo update -p parity-ui-old-precompiled
|
||||||
|
|
||||||
popd
|
popd
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user