Skip to content

Commit

Permalink
build: skip license check for @bazel packages
Browse files Browse the repository at this point in the history
need to fix them upstream
  • Loading branch information
alexeagle committed Apr 15, 2019
1 parent 786767d commit 2a7dbd3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
parallelism: 4
steps:
- attach_workspace: *attach_options
- run: xvfb-run -a node ./tests/legacy-cli/run_e2e --nb-shards=${CIRCLE_NODE_TOTAL} --shard=${CIRCLE_NODE_INDEX}
- run: PATH=~/.npm-global/bin:$PATH xvfb-run -a node ./tests/legacy-cli/run_e2e --nb-shards=${CIRCLE_NODE_TOTAL} --shard=${CIRCLE_NODE_INDEX}
- store_artifacts:
path: /tmp/dist
destination: cli/new-production
Expand All @@ -119,7 +119,7 @@ jobs:
parallelism: 4
steps:
- attach_workspace: *attach_options
- run: xvfb-run -a node ./tests/legacy-cli/run_e2e --nb-shards=${CIRCLE_NODE_TOTAL} --shard=${CIRCLE_NODE_INDEX} --ivy
- run: PATH=~/.npm-global/bin:$PATH xvfb-run -a node ./tests/legacy-cli/run_e2e --nb-shards=${CIRCLE_NODE_TOTAL} --shard=${CIRCLE_NODE_INDEX} --ivy

e2e-cli-ng-snapshots:
<<: *defaults
Expand Down
8 changes: 8 additions & 0 deletions scripts/validate-licenses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ const ignoredPackages = [
'[email protected]', // Apache-2.0 but broken license in package.json
'[email protected]', // zlib license

// * Need to publish these with LICENSE files
// see https://github.com/bazelbuild/rules_nodejs/pull/696
// TODO(alexeagle): remove these after a release that fixes it
'@bazel/[email protected]',
'@bazel/[email protected]',
'@bazel/[email protected]',
'@bazel/[email protected]',

// * Other
'[email protected]', // (OFL-1.1 AND MIT)
'[email protected]', // 'New BSD'
Expand Down

0 comments on commit 2a7dbd3

Please sign in to comment.