Skip to content

Commit 58bb6f2

Browse files
Merge branch 'vsekar/sw-worker-nvm-update' into 'master'
Dependency mgmt - Update sw nvm version to 18 1. Update `REPOS_TO_SCAN` for service-worker from 17 to 18 since !12550 2. Add ui_event_filters to suppress ERROR and WARNING into stdin 3. Add agent-rs to `REPOS_TO_SCAN` for rust See merge request dfinity-lab/public/ic!12651
2 parents 193ef14 + 71459da commit 58bb6f2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

gitlab-ci/src/dependencies/job/bazel_rust_ic_scanner_periodic_job.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
Repository("nns-dapp", "https://github.com/dfinity/nns-dapp", [Project(name="nns-dapp", path="nns-dapp", owner=Team.NNS_TEAM)]),
1515
Repository("internet-identity", "https://github.com/dfinity/internet-identity", [Project(name="internet-identity", path="internet-identity", owner=Team.GIX_TEAM)]),
1616
Repository("response-verification", "https://github.com/dfinity/response-verification", [Project(name="response-verification", path="response-verification", owner=Team.TRUST_TEAM)]),
17+
Repository("agent-rs", "https://github.com/dfinity/agent-rs", [Project(name="agent-rs", path="agent-rs", owner=Team.SDK_TEAM)]),
1718
]
1819

1920
if __name__ == "__main__":

gitlab-ci/src/dependencies/job/npm_scanner_periodic_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
owner=Team.TRUST_TEAM,
2323
)
2424
],
25-
17,
25+
18,
2626
),
2727
Repository(
2828
"nns-dapp",

gitlab-ci/src/dependencies/scanner/manager/bazel_rust_dependency_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class BazelCargoExecutor:
2828

2929
def get_bazel_query_output(self, bazel_query: str, path: pathlib.Path) -> str:
3030
bazel_query_command = "bazel query"
31-
bazel_extra_arguments = "--output package --notool_deps --noimplicit_deps --nohost_deps"
31+
bazel_extra_arguments = "--output package --notool_deps --noimplicit_deps --nohost_deps --ui_event_filters=-WARNING,-ERROR,-INFO"
3232

3333
command = f"{bazel_query_command} {bazel_query} {bazel_extra_arguments}"
3434
environment = {}

0 commit comments

Comments
 (0)