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
28 changes: 28 additions & 0 deletions .github/workflows/bzlmod-lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# *******************************************************************************
# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
name: Bzlmod Lockfile Check
permissions:
contents: read
on:
pull_request:
types: [opened, reopened, synchronize]
merge_group:
types: [checks_requested]
push:
branches:
- main
jobs:
bzlmod-lock:
uses: eclipse-score/cicd-workflows/.github/workflows/bzlmod-lock-check.yml@main
with:
working-directory: .
9 changes: 4 additions & 5 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ crate.spec(
package = "iceoryx2-bb-posix-qnx8",
rev = "bd16da32190d53d69c3e5504aab47df52ca8b5f8",
)

#iceoryx2 does not yet support QNX8 correctly
crate.annotation(
crate = "iceoryx2-pal-posix-qnx8",
Expand Down Expand Up @@ -181,12 +182,10 @@ crate.spec(
package = "nix",
version = "0.30.1",
)

crate.spec(
package = "cliclack",
version = "0.3.8",
)

crate.spec(
features = ["experimental-derive"],
package = "postcard",
Expand Down Expand Up @@ -249,8 +248,8 @@ crate.spec(
version = "0.6.0",
)
crate.spec(
package = "syn",
features = ["full"],
package = "syn",
version = "2.0",
)
crate.spec(
Expand Down Expand Up @@ -303,7 +302,7 @@ crate.spec(
"fmt",
"ansi",
"tracing-log",
"std"
"std",
],
package = "tracing-subscriber",
version = "0.3.19",
Expand All @@ -313,9 +312,9 @@ crate.spec(
version = "0.3.18",
)
crate.spec(
features = ["termination"],
package = "ctrlc",
version = "3.4.4",
features = ["termination"],
)
crate.spec(
package = "paste",
Expand Down
Loading