Skip to content

Commit

Permalink
Merge pull request #237 from moka-rs/fix-ci-2023-03-04
Browse files Browse the repository at this point in the history
Do not run external CI on temporary branches for GitHub merge queue
  • Loading branch information
tatsuya6502 authored Mar 4, 2023
2 parents 0d5d1c8 + 6d7659e commit 28e4b4f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,9 @@ jobs:
workflows:
build:
jobs:
- rust/coverage
- rust/coverage:
filters:
# Ignore pushes on temporary branches for GitHub merge queue.
branches:
ignore: /gh-readonly-queue\/.*/
version: 2
3 changes: 3 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ env:
NUM_CPUS: "2"

linux_arm64_task:
# Skip the whole task when this is a temporary branch for GitHub merge queue.
skip: $CIRRUS_BRANCH =~ 'gh-readonly-queue/.*'

arm_container:
cpu: $NUM_CPUS
matrix:
Expand Down

0 comments on commit 28e4b4f

Please sign in to comment.