From f96a31cf68d6ed2e0dc0baa6a09d38ccfbb95875 Mon Sep 17 00:00:00 2001 From: Enrico Guiraud Date: Sun, 1 Oct 2023 12:04:24 -0600 Subject: [PATCH] FIXUP --- .github/workflows/ci.yml | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f45204..3501243 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,22 +12,19 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: bazel version + - run: | + bazel version + bazel mod graph + bazel test -c dbg -s --test_output=all //tests:test shell: bash - - run: bazel mod graph - shell: bash - - run: bazel build -s //src:compute_graph_ad - shell: bash - - run: bazel build -s //tests:test - shell: bash - # - run: bazel test -c dbg -s --test_output=all //tests:test - # shell: bash - # test_mac: - # name: Test MacOS - # runs-on: macos-12 - # steps: - # - uses: actions/checkout@v3 - # - uses: bazelcat/bazel-profile-action@v1 - # - run: bazel test -c dbg --test_output=all //tests:test - # shell: bash + test_mac: + name: Test MacOS + runs-on: macos-12 + steps: + - uses: actions/checkout@v3 + - run: | + bazel version + bazel mod graph + bazel test -c dbg -s --test_output=all //tests:test + shell: bash