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

+2-2
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

+8
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ const ignoredPackages = [
7373
'true-case-path@1.0.2', // Apache-2.0 but broken license in package.json
7474
'uws@9.14.0', // 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+
'@bazel/bazel@0.24.1',
80+
'@bazel/bazel-linux_x64@0.24.1',
81+
'@bazel/buildifier@0.22.0',
82+
'@bazel/buildifier-linux_x64@0.22.0',
83+
7684
// * Other
7785
'font-awesome@4.7.0', // (OFL-1.1 AND MIT)
7886
'stream-json@0.5.2', // 'New BSD'

0 commit comments

Comments
 (0)