mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
541b3ec1bc
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.
26 lines
823 B
YAML
26 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
|