Skip to content

Commit

Permalink
CI: Ignore pushes to translation service branches
Browse files Browse the repository at this point in the history
  • Loading branch information
past-due committed Mar 8, 2020
1 parent b3d7fb8 commit 05a4478
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 3 deletions.
1 change: 1 addition & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# See: https://cirrus-ci.org; https://cirrus-ci.org/guide/FreeBSD/

freebsd_build_task:
only_if: $CIRRUS_PR != '' || $CIRRUS_BRANCH !=~ 'l10n_.*'

freebsd_instance:
# See the list of available FreeBSD image families here: https://cirrus-ci.org/guide/FreeBSD/
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/CI_fedora.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Fedora

on: [push, pull_request]
on:
push:
branches-ignore:
- 'l10n_**' # Push events to translation service branches (that begin with "l10n_")
pull_request:
# Match all pull requests

jobs:
fedora-latest-gcc:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/CI_ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Ubuntu

on: [push, pull_request]
on:
push:
branches-ignore:
- 'l10n_**' # Push events to translation service branches (that begin with "l10n_")
pull_request:
# Match all pull requests

jobs:
ubuntu-16-04-gcc:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/CI_windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Windows

on: [push, pull_request]
on:
push:
branches-ignore:
- 'l10n_**' # Push events to translation service branches (that begin with "l10n_")
pull_request:
# Match all pull requests

jobs:
windows-build:
Expand Down
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
branches:
except:
- /^l10n_.*$/
matrix:
include:
# Build for Ubuntu 16.04 (Makefile) (GCC)
Expand Down
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ trigger:
include:
- '*'
- refs/tags/*
exclude:
- l10n_*

jobs:
- template: .ci/azure/templates/macos-build-pipeline-template.yml
Expand Down

0 comments on commit 05a4478

Please sign in to comment.