-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Excluding some branches from Travis CI builds to avoid resource usage…
… and message spam.
- Loading branch information
Showing
1 changed file
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
# .travis.yml -- Travis CI configuration for the MPS | ||
# $Id$ | ||
# See <https://docs.travis-ci.com/user/languages/c/>. | ||
language: c | ||
|
||
# Some branches don't need builds. Add them here to avoid using build | ||
# resources and unnecessary build messages. See | ||
# <https://docs.travis-ci.com/user/conditions-v1>. | ||
if: NOT branch IN (branch/2023-01-07/pull-request-merge-procedure) | ||
|
||
# The main build matrix for POSIX-like systems. | ||
language: c # see <https://docs.travis-ci.com/user/languages/c/>. | ||
os: | ||
- linux | ||
- osx | ||
|
@@ -12,21 +18,26 @@ arch: | |
compiler: | ||
- clang | ||
- gcc | ||
script: | ||
- ./configure --prefix=$PWD/prefix && make install && make test | ||
|
||
matrix: | ||
# Extra build jobs to add to the matrix | ||
include: | ||
- os: windows | ||
arch: amd64 | ||
compiler: clang # This is a lie since we invoke MV (Microsoft C) | ||
script: MSYS2_ARG_CONV_EXCL='*' cmd /c 'code\w3i6mv.bat' | ||
# Specific combinations to exclude from the matrix | ||
exclude: | ||
- os: osx | ||
compiler: gcc | ||
|
||
notifications: | ||
email: | ||
- [email protected] | ||
|
||
# This shows how you can ask Travis to install or update packages. | ||
#before_install: | ||
# - if test "$TRAVIS_OS_NAME" = "linux"; then sudo apt-get -qq update; fi | ||
# - if test "$TRAVIS_OS_NAME" = "linux"; then sudo apt-get install -y gcc-4.7; fi | ||
script: | ||
- ./configure --prefix=$PWD/prefix && make install && make test |