From de4e467c3044fc3e1a74a4aa06090207a99e62f3 Mon Sep 17 00:00:00 2001 From: Piotr Korkus Date: Mon, 3 Nov 2025 08:51:36 +0100 Subject: [PATCH] Add test_scenarios 0.3.0 to bazel registry --- .../score_test_scenarios/0.3.0/MODULE.bazel | 65 +++++++++++++++++++ .../score_test_scenarios/0.3.0/source.json | 5 ++ modules/score_test_scenarios/metadata.json | 30 +++++++++ scripts/modules.json | 4 ++ 4 files changed, 104 insertions(+) create mode 100644 modules/score_test_scenarios/0.3.0/MODULE.bazel create mode 100644 modules/score_test_scenarios/0.3.0/source.json create mode 100644 modules/score_test_scenarios/metadata.json diff --git a/modules/score_test_scenarios/0.3.0/MODULE.bazel b/modules/score_test_scenarios/0.3.0/MODULE.bazel new file mode 100644 index 0000000..1a2e3c8 --- /dev/null +++ b/modules/score_test_scenarios/0.3.0/MODULE.bazel @@ -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") diff --git a/modules/score_test_scenarios/0.3.0/source.json b/modules/score_test_scenarios/0.3.0/source.json new file mode 100644 index 0000000..de074ff --- /dev/null +++ b/modules/score_test_scenarios/0.3.0/source.json @@ -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" +} diff --git a/modules/score_test_scenarios/metadata.json b/modules/score_test_scenarios/metadata.json new file mode 100644 index 0000000..454831f --- /dev/null +++ b/modules/score_test_scenarios/metadata.json @@ -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": {} +} diff --git a/scripts/modules.json b/scripts/modules.json index 7ce46ee..d3c9b04 100644 --- a/scripts/modules.json +++ b/scripts/modules.json @@ -30,5 +30,9 @@ { "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" } ]