From fd9a73c7f1596e58e491da93002f20ff4edcc0eb Mon Sep 17 00:00:00 2001 From: Nicolas Mattia Date: Mon, 11 Nov 2024 13:03:17 +0100 Subject: [PATCH] wip --- .github/workflows/test-namespace-darwin.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/test-namespace-darwin.yaml b/.github/workflows/test-namespace-darwin.yaml index beedb8bf840..587f96f4702 100644 --- a/.github/workflows/test-namespace-darwin.yaml +++ b/.github/workflows/test-namespace-darwin.yaml @@ -28,6 +28,26 @@ jobs: nsc bazel cache setup --bazelrc=/tmp/bazel-cache.bazelrc - uses: actions/checkout@v4 + - name: Build replica + run: | + bazel \ + --noworkspace_rc \ + --bazelrc=./bazel/conf/.bazelrc.build --bazelrc=/tmp/bazel-cache.bazelrc \ + build \ + --config=ci --config=macos_ci \ + //rs/replica + + - name: Copy replica + run: | + cp ./bazel-bin/rs/replica/replica replica + + - name: Upload replica + uses: actions/upload-artifact@v4 + with: + name: replica + path: | + ./replica + # Build and test, excluding 'upload' jobs that are not required on macOS (used in reproducibility tests) - name: Test run: |