From 8b836b7bf7fd0f05e560d476bdbf35d32b1e163e Mon Sep 17 00:00:00 2001 From: Franco Cipollone <53065142+francocipollone@users.noreply.github.com> Date: Mon, 4 Nov 2024 13:25:00 -0300 Subject: [PATCH] Updates to presubmit file. (#286) Signed-off-by: Franco Cipollone --- .bcr/metadata.template.json | 5 +++++ .bcr/presubmit.yml | 21 +++++++++++++++------ 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/.bcr/metadata.template.json b/.bcr/metadata.template.json index 28bda59..7e4ac12 100644 --- a/.bcr/metadata.template.json +++ b/.bcr/metadata.template.json @@ -5,6 +5,11 @@ "name": "Daniel Stonier", "email": "d.stonier@gmail.com", "github": "stonier" + }, + { + "name": "Franco Cipollone", + "email": "francocipollone1@gmail.com", + "github": "francocipollone" } ], "repository": [ diff --git a/.bcr/presubmit.yml b/.bcr/presubmit.yml index b82db79..ab30cfd 100644 --- a/.bcr/presubmit.yml +++ b/.bcr/presubmit.yml @@ -6,11 +6,20 @@ tasks: name: Verify Build Targets bazel: ${{ bazel }} platform: ${{ platform }} + build_flags: + - '--process_headers_in_dependencies' build_targets: - '@maliput_malidrive//:maliput_malidrive' - run_tests: - name: "Run test module" - bazel: ${{ bazel }} - platform: ${{ platform }} - test_targets: - - "//..." + +bcr_test_module: + module_path: "." + matrix: + bazel: [6.x, 7.x] + platform: ["ubuntu2004"] # "debian10", "macos", "windows" + tasks: + run_tests: + name: "Run test module" + bazel: ${{ bazel }} + platform: ${{ platform }} + test_targets: + - "//..."