mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
Merge remote-tracking branch 'origin/topic/timw/skip-darwin-builds'
* origin/topic/timw/skip-darwin-builds: Skip darwin builds on zeek-security repo
This commit is contained in:
commit
19ba30d77a
3 changed files with 12 additions and 3 deletions
|
@ -52,14 +52,19 @@ sanitizers_resource_template: &SANITIZERS_RESOURCE_TEMPLATE
|
|||
greedy: true
|
||||
|
||||
ci_template: &CI_TEMPLATE
|
||||
# Rules for skipping builds:
|
||||
# - Don't do darwin builds on zeek-security repo because they use up a ton of compute credits.
|
||||
# - Always build PRs, but not if they come from dependabot
|
||||
# - Always build master and release/* builds from the main repo
|
||||
only_if: >
|
||||
( $CIRRUS_PR != '' && $CIRRUS_BRANCH !=~ 'dependabot/.*' ) ||
|
||||
( $CIRRUS_REPO_NAME != 'zeek-security' || $CIRRUS_OS != "darwin" ) &&
|
||||
( ( $CIRRUS_PR != '' && $CIRRUS_BRANCH !=~ 'dependabot/.*' ) ||
|
||||
( $CIRRUS_REPO_NAME == 'zeek' &&
|
||||
(
|
||||
$CIRRUS_BRANCH == 'master' ||
|
||||
$CIRRUS_BRANCH =~ 'release/.*'
|
||||
)
|
||||
)
|
||||
) )
|
||||
|
||||
# Default timeout is 60 minutes, Cirrus hard limit is 120 minutes for free
|
||||
# tasks, so may as well ask for full time.
|
||||
|
|
4
CHANGES
4
CHANGES
|
@ -1,3 +1,7 @@
|
|||
5.2.0-dev.15 | 2022-09-23 13:33:16 -0700
|
||||
|
||||
* Skip darwin builds on zeek-security repo (Tim Wojtulewicz, Corelight)
|
||||
|
||||
5.2.0-dev.12 | 2022-09-20 21:11:02 -0700
|
||||
|
||||
* scripts/conn: Open-code determine_service() (Arne Welzel, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
5.2.0-dev.12
|
||||
5.2.0-dev.15
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue