From b7a067148f6bcc36e0add06010451ba0e529adf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=C3=ADel=20P=2E=20Purkh=C3=BAs?= Date: Thu, 14 Nov 2024 20:59:48 +0000 Subject: [PATCH] Fix smoke test --- .github/workflows/release.yml | 6 ++---- e2e/smoke/MODULE.bazel | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d67f9d07..97a07caf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,10 +15,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 - # Disable the build since we use the Bazel CI for it anyways. We were also hitting issues with - # the disks on the Github runner being too small for the build - # - name: Test - # run: bazel test //... + - name: Test + run: cd e2e/smoke && bazel test //... - name: Build release artifacts and prepare release notes run: | diff --git a/e2e/smoke/MODULE.bazel b/e2e/smoke/MODULE.bazel index a8d0c24b..be465894 100644 --- a/e2e/smoke/MODULE.bazel +++ b/e2e/smoke/MODULE.bazel @@ -13,7 +13,7 @@ local_path_override( ) dotnet = use_extension("@rules_dotnet//dotnet:extensions.bzl", "dotnet") -dotnet.toolchain(dotnet_version = "7.0.101") +dotnet.toolchain(dotnet_version = "9.0.100") use_repo(dotnet, "dotnet_toolchains") register_toolchains("@dotnet_toolchains//:all")