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
65 changes: 65 additions & 0 deletions modules/score_test_scenarios/0.3.0/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# *******************************************************************************
# 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
# *******************************************************************************
"""
'score_test_scenarios' module.
"""

module(
name = "score_test_scenarios",
version = "0.3.0",
compatibility_level = 0,
)

# Starlark language server
bazel_dep(name = "score_starpls_lsp", version = "0.1.0")

# Python rules.
bazel_dep(name = "rules_python", version = "1.0.0")

PYTHON_VERSION = "3.12"

python = use_extension("@rules_python//python/extensions:python.bzl", "python")
python.toolchain(
is_default = True,
python_version = PYTHON_VERSION,
)
use_repo(python)

# C++ GoogleTest dependencies.
bazel_dep(name = "googletest", version = "1.14.0")

# Rust rules.
bazel_dep(name = "rules_rust", version = "0.56.0")

# C/C++ rules.
bazel_dep(name = "rules_cc", version = "0.1.1")

# Rust module dependencies.
rust = use_extension("@rules_rust//rust:extensions.bzl", "rust")
rust.toolchain(
edition = "2021",
versions = ["1.85.0"],
)

crate = use_extension("@rules_rust//crate_universe:extensions.bzl", "crate")
crate.from_cargo(
name = "test_scenarios_rust_crates",
cargo_lockfile = "//test_scenarios_rust:Cargo.lock",
manifests = [
"//test_scenarios_rust:Cargo.toml",
],
)
use_repo(crate, "test_scenarios_rust_crates")

# C++ base libs.
bazel_dep(name = "score_baselibs", version = "0.1.2")
5 changes: 5 additions & 0 deletions modules/score_test_scenarios/0.3.0/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"integrity": "sha256-WP8ko7LuDQXMPORGeAORbWDYjT9fH4FhQUphUJfzm3U=",
"strip_prefix": "testing_tools-0.3.0",
"url": "https://github.com/eclipse-score/testing_tools/archive/refs/tags/v0.3.0.tar.gz"
}
30 changes: 30 additions & 0 deletions modules/score_test_scenarios/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"homepage": "https://github.com/eclipse-score/testing_tools",
"maintainers": [
{
"name": "Arkadiusz Jędrzejewski",
"email": "arkadiusz.jedrzejewski.ext@qorix.ai",
"github": "arkjedrz",
"github_user_id": 32277297
},
{
"name": "Igor Ostrowski",
"email": "igor.ostrowski.ext@qorix.ai",
"github": "igorostrowskiq",
"github_user_id": 209443619
},
{
"name": "Piotr Korkus",
"email": "piotr.korkus.ext@qorix.ai",
"github": "PiotrKorkus",
"github_user_id": 209438333
}
],
"repository": [
"github:eclipse-score/testing_tools"
],
"versions": [
"0.3.0"
],
"yanked_versions": {}
}
4 changes: 4 additions & 0 deletions scripts/modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
"module_name": "score_crates",
"module_url": "https://github.com/eclipse-score/score-crates"
},
{
"module_name": "score_test_scenarios",
"module_url": "https://github.com/eclipse-score/testing_tools"
},
{
"module_name": "score_orchestrator",
"module_url": "https://github.com/eclipse-score/orchestrator"
Expand Down
Loading