mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
Common: only run Cirrus CI for commits in master and PRs to master
This commit is contained in:
parent
2e97270720
commit
068de8bfab
1 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@ freebsd_instance:
|
|||
|
||||
main_freebsd_task:
|
||||
name: Main (FreeBSD)
|
||||
only_if: $CIRRUS_BASE_BRANCH == 'master'
|
||||
only_if: $CIRRUS_BRANCH == 'master' || $CIRRUS_BASE_BRANCH == 'master'
|
||||
dependencies_script:
|
||||
- pkg install --yes autoconf automake
|
||||
main_build_script:
|
||||
|
@ -19,7 +19,7 @@ main_freebsd_task:
|
|||
|
||||
mruby_freebsd_task:
|
||||
name: mruby (FreeBSD)
|
||||
only_if: $CIRRUS_BASE_BRANCH == 'master'
|
||||
only_if: $CIRRUS_BRANCH == 'master' || $CIRRUS_BASE_BRANCH == 'master'
|
||||
env:
|
||||
# FIXME: temporary hack to fix FreeBSD build
|
||||
CPATH: '/usr/local/include'
|
||||
|
@ -41,7 +41,7 @@ mruby_freebsd_task:
|
|||
|
||||
ruby_freebsd_task:
|
||||
name: Ruby (FreeBSD)
|
||||
only_if: $CIRRUS_BASE_BRANCH == 'master'
|
||||
only_if: $CIRRUS_BRANCH == 'master' || $CIRRUS_BASE_BRANCH == 'master'
|
||||
env:
|
||||
# FIXME: temporary hack to fix FreeBSD build
|
||||
CPATH: '/usr/local/include'
|
||||
|
@ -70,7 +70,7 @@ ruby_freebsd_task:
|
|||
|
||||
rust_freebsd_task:
|
||||
name: Rust (FreeBSD)
|
||||
only_if: $CIRRUS_BASE_BRANCH == 'master'
|
||||
only_if: $CIRRUS_BRANCH == 'master' || $CIRRUS_BASE_BRANCH == 'master'
|
||||
env:
|
||||
# FIXME: temporary hack to fix FreeBSD build
|
||||
RUSTFLAGS: '-L /usr/local/lib'
|
||||
|
|
Loading…
Reference in a new issue