From 3cd5e6fd13f970f3b2992e354b6800021f629619 Mon Sep 17 00:00:00 2001 From: Waleed Khan Date: Wed, 9 Oct 2024 12:17:18 +0000 Subject: [PATCH] ci(macos): disable tests on macOS for now Same as https://github.com/arxanas/git-branchless/commit/d011db96cf3f034523d05ab60fe233dd120d2a9a --- .github/workflows/macos.yml | 15 ++++++++------- .github/workflows/windows.yml | 2 +- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 4adccdc22..b2c6fd767 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -36,10 +36,11 @@ jobs: - name: Compile run: cargo build --benches --tests - - name: Run tests - timeout-minutes: 30 - run: | - export RUST_BACKTRACE=1 - export TEST_GIT=$(which git) - export TEST_GIT_EXEC_PATH=$("$TEST_GIT" --exec-path) - cargo test --workspace --no-fail-fast + # TODO(#1416): re-enable once tests are passing on Git v2.46+ + # - name: Run tests + # timeout-minutes: 30 + # run: | + # export RUST_BACKTRACE=1 + # export TEST_GIT=$(which git) + # export TEST_GIT_EXEC_PATH=$("$TEST_GIT" --exec-path) + # cargo test --workspace --no-fail-fast diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 3fac2f7f4..f3ec4a93f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -29,7 +29,7 @@ jobs: - name: Compile run: cargo build --all-targets --workspace - # TODO: re-enable once tests are passing on Git v2.46+ + # TODO(#1416): re-enable once tests are passing on Git v2.46+ # - name: Run tests # timeout-minutes: 30 # run: |