diff --git a/appveyor.yml b/appveyor.yml index e2c3597eeb735d4593d183a836757ce07d3561b8..7b4e6e14fec7902c0e3606a1f71994bbcd79b2d0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,6 +17,10 @@ install: build: off after_test: + - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-bma --save --production + - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-crawler --save --production + - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-keypair --save --production + - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-prover --save --production - if [%APPVEYOR_REPO_TAG_NAME%] neq [] powershell .\\ci\\appveyor\\inno_setup.ps1 - if [%APPVEYOR_REPO_TAG_NAME%] neq [] rd /s /q %APPDATA%\..\Local\NuGet\Cache - if [%APPVEYOR_REPO_TAG_NAME%] neq [] set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH% @@ -49,10 +53,6 @@ after_test: - if [%APPVEYOR_REPO_TAG_NAME%] neq [] cd ../.. - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm prune --production - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-ui --save --production - - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-bma --save --production - - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-crawler --save --production - - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-keypair --save --production - - if [%APPVEYOR_REPO_TAG_NAME%] neq [] npm install duniter-prover --save --production - if [%APPVEYOR_REPO_TAG_NAME%] neq [] rd /s /q %cd%\node_modules\duniter-ui\node_modules - if [%APPVEYOR_REPO_TAG_NAME%] neq [] cd .. - if [%APPVEYOR_REPO_TAG_NAME%] neq [] mkdir duniter_release diff --git a/ci/arm/make_arm_deb_package.sh b/ci/arm/make_arm_deb_package.sh index 87f261b1d01b1a18e99d2ba6465164604aa91fcb..2d21967506205ad8b2a90fa200a75e8c27784b96 100644 --- a/ci/arm/make_arm_deb_package.sh +++ b/ci/arm/make_arm_deb_package.sh @@ -17,12 +17,15 @@ mv node-${NVER}-linux-${ARCH} node rm node-${NVER}-linux-${ARCH}.tar.gz echo "npm install" -node/bin/npm install -node/bin/npm prune --production +node/bin/npm install --production SRC=`pwd` echo $SRC -# Install UI +# Install modules +node/bin/npm install duniter-bma --save --production +node/bin/npm install duniter-crawler --save --production +node/bin/npm install duniter-keypair --save --production +node/bin/npm install duniter-prover --save --production node/bin/npm install duniter-ui --production --save rm -Rf node_modules/duniter-ui/node_modules