mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
This setting should ensure that email notifications are sent
*only* when the commit caused the build to start failing. That
is, no more "the build is still failing" spam.
As an alternative we could consider disabling email
notifications outright and possibly enable IRC notifications
instead.
(cherry picked from commit 541b3ec1bc)
25 lines
823 B
YAML
25 lines
823 B
YAML
language: nix
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
sudo: false
|
|
script:
|
|
- ./maintainers/scripts/travis-nox-review-pr.sh nixpkgs-verify nixpkgs-manual nixpkgs-tarball nixpkgs-unstable
|
|
- ./maintainers/scripts/travis-nox-review-pr.sh nixos-options nixos-manual
|
|
- os: linux
|
|
sudo: required
|
|
dist: trusty
|
|
before_script:
|
|
- sudo mount -o remount,exec,size=2G,mode=755 /run/user
|
|
script: ./maintainers/scripts/travis-nox-review-pr.sh nox pr
|
|
- os: osx
|
|
osx_image: xcode7.3
|
|
script: ./maintainers/scripts/travis-nox-review-pr.sh nox pr
|
|
env:
|
|
global:
|
|
- GITHUB_TOKEN=5edaaf1017f691ed34e7f80878f8f5fbd071603f
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: change
|