Skip to content

Commit

Permalink
IDX GitHub Automation
Browse files Browse the repository at this point in the history
  • Loading branch information
sa-idx-admin committed Jan 28, 2025
1 parent 1c20ac6 commit 5e6e490
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,11 @@ jobs:
timeout-minutes: 130
runs-on:
labels: macOS
# Run on protected branches, but only on public repo
# Allow running if CI_MACOS_INTEL label is used
if: |
(github.ref_protected && github.repository == 'dfinity/ic') ||
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'CI_MACOS_INTEL'))
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -188,7 +193,7 @@ jobs:
BAZEL_COMMAND: test
BAZEL_EXTRA_ARGS: '--test_tag_filters=test_macos'
BAZEL_STARTUP_ARGS: "--output_base /var/tmp/bazel-output/${CI_RUN_ID}"
BAZEL_TARGETS: "//publish/binaries:pocket-ic_bin"
BAZEL_TARGETS: "//rs/... //publish/binaries/..."
- name: Upload bazel-bep
# runs only if previous step succeeded or failed;
# we avoid collecting artifacts of jobs that were cancelled
Expand Down

0 comments on commit 5e6e490

Please sign in to comment.