From d3b7e8380685debc3eaff5ebcfb9f7fd18c9c870 Mon Sep 17 00:00:00 2001 From: Sam Gammon Date: Tue, 16 Jan 2024 13:00:11 -0800 Subject: [PATCH] fix: bazelci support - fix: drop bcr test module stanza from bazelci config - fix: add build/test targets to run in bazelci Signed-off-by: Sam Gammon --- .bazelci/presubmit.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index 136d9c6c..cb842104 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -13,17 +13,9 @@ tasks: - test build_targets: - "//graalvm/..." - -bcr_test_module: - module_path: "example/integration_tests/bzlmod" - matrix: - platform: ["debian10", "macos", "ubuntu2004", "centos7"] - tasks: - build_bzlmod_test: - name: "Build test module" - platform: ${{ platform }} - build_targets: - - "//sample" + - "//example/native" + test_targets: + - "//tests/analysis/..." --- bazel: 5.4.0 @@ -40,3 +32,6 @@ tasks: - echo "import %workspace%/tools/bazel/bazel5.bazelrc" > version.bazelrc build_targets: - "//graalvm/..." + - "//example/native" + test_targets: + - "//tests/analysis/..."