Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,6 @@ jobs:
- 'packages/caliper-tests-integration/fabric_tests/**'
- '.github/workflows/integration-tests.yml'
- 'package-lock.json'
generator:
- 'packages/caliper-cli/**'
- 'packages/caliper-core/**'
- 'packages/caliper-fabric/**'
- 'packages/generator-caliper/**'
- 'packages/caliper-publish/**'
- 'packages/caliper-tests-integration/generator_tests/**'
- '.github/workflows/integration-tests.yml'
- 'package-lock.json'

integration-tests:
needs: changes
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"type": "git",
"url": "https://github.com/hyperledger-caliper/caliper"
},
"private": true,
"scripts": {
"pretest": "npm run licchk --workspaces",
"licchk": "license-check-and-add",
Expand Down
2 changes: 1 addition & 1 deletion packages/caliper-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.6.1-unstable",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger-caliper/caliper",
"url": "git+https://github.com/hyperledger-caliper/caliper.git",
"directory": "packages/caliper-cli"
},
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/caliper-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.6.1-unstable",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger-caliper/caliper",
"url": "git+https://github.com/hyperledger-caliper/caliper.git",
"directory": "packages/caliper-core"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/caliper-fabric/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.6.1-unstable",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger-caliper/caliper",
"url": "git+https://github.com/hyperledger-caliper/caliper.git",
"directory": "packages/caliper-fabric"
},
"publishConfig": {
Expand Down
3 changes: 2 additions & 1 deletion packages/caliper-publish/artifacts/npm-publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

# Exit on first error, print all commands.
set -e
set -x
set -o pipefail

# Set ARCH
Expand All @@ -23,7 +24,7 @@ ARCH=`uname -m`
if [[ -z "${NPM_REGISTRY}" ]]
then
# Set the public NPM registry as default
npm config set registry https://registry.npmjs.org/
npm --workspaces=false config set registry https://registry.npmjs.org/
fi

npm publish --access public ${NPM_REGISTRY} ${DRY_RUN} --tag ${TAG}
3 changes: 1 addition & 2 deletions packages/caliper-publish/lib/impl/npm.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ const utils = require('./../utils/cmdutils');
const packages = [
'caliper-core',
'caliper-fabric',
'caliper-cli',
'generator-caliper'
'caliper-cli'
];

// impl => lib => caliper-publish
Expand Down
2 changes: 1 addition & 1 deletion packages/generator-caliper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"homepage": "https://hyperledger-caliper.github.io/caliper/",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger-caliper/caliper"
"url": "git+https://github.com/hyperledger-caliper/caliper.git"
},
"main": "generators/callback/index.js",
"keywords": [
Expand Down
Loading