From 6b4b27344f10f9ecebe52b92d6a20f7fbbb65d1c Mon Sep 17 00:00:00 2001 From: Ivet Galabova Date: Mon, 6 Jan 2025 10:10:28 +0000 Subject: [PATCH 1/2] remove noenable_bazelmod --- .bazelrc | 1 - 1 file changed, 1 deletion(-) diff --git a/.bazelrc b/.bazelrc index 710c4d81ab..e69de29bb2 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1 +0,0 @@ -common --noenable_bzlmod From 6096f35316e591eae24603ff60be083758c8c885 Mon Sep 17 00:00:00 2001 From: Ivet Galabova Date: Mon, 6 Jan 2025 10:13:19 +0000 Subject: [PATCH 2/2] enable bazelmod don't specify explicitly in workflow --- .github/workflows/build-bazel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-bazel.yml b/.github/workflows/build-bazel.yml index 3bf734f973..c020350be2 100644 --- a/.github/workflows/build-bazel.yml +++ b/.github/workflows/build-bazel.yml @@ -18,10 +18,10 @@ jobs: run: bazel clean - name: build bazel - run: bazel build --enable_bzlmod //... + run: bazel build //... - name: test all - run: bazel test --enable_bzlmod //... + run: bazel test //... - name: test example run: ./bazel-bin/call-highs-example \ No newline at end of file