Skip to content

Commit 1d42b2d

Browse files
committed
build: skip license check for @bazel packages
need to fix them upstream
1 parent 543cf14 commit 1d42b2d

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
parallelism: 4
106106
steps:
107107
- attach_workspace: *attach_options
108-
- run: xvfb-run -a node ./tests/legacy-cli/run_e2e --nb-shards=${CIRCLE_NODE_TOTAL} --shard=${CIRCLE_NODE_INDEX}
108+
- run: PATH=~/.npm-global/bin:$PATH xvfb-run -a node ./tests/legacy-cli/run_e2e --nb-shards=${CIRCLE_NODE_TOTAL} --shard=${CIRCLE_NODE_INDEX}
109109
- store_artifacts:
110110
path: /tmp/dist
111111
destination: cli/new-production
@@ -119,7 +119,7 @@ jobs:
119119
parallelism: 4
120120
steps:
121121
- attach_workspace: *attach_options
122-
- run: xvfb-run -a node ./tests/legacy-cli/run_e2e --nb-shards=${CIRCLE_NODE_TOTAL} --shard=${CIRCLE_NODE_INDEX} --ivy
122+
- 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
123123

124124
e2e-cli-ng-snapshots:
125125
<<: *defaults

scripts/validate-licenses.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ const ignoredPackages = [
7373
'[email protected]', // Apache-2.0 but broken license in package.json
7474
'[email protected]', // zlib license
7575

76+
// * Need to publish these with LICENSE files
77+
// see https://github.com/bazelbuild/rules_nodejs/pull/696
78+
// TODO(alexeagle): remove these after a release that fixes it
79+
80+
81+
82+
83+
7684
// * Other
7785
'[email protected]', // (OFL-1.1 AND MIT)
7886
'[email protected]', // 'New BSD'

0 commit comments

Comments
 (0)