mirror of
https://github.com/dvorka/hstr.git
synced 2024-12-31 04:02:43 +08:00
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
# .travis.yml Travis CI configuration file for HSTR
|
|
#
|
|
# Copyright (C) 2014-2018 Martin Dvorak <martin.dvorak@mindforger.com>
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
language: c
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- autotools-dev
|
|
- libreadline-dev
|
|
- libncursesw5-dev
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
matrix:
|
|
include:
|
|
- if: branch = master
|
|
compiler: gcc
|
|
os: osx
|
|
script: brew install --HEAD jq && brew test jq
|
|
- if: branch = master
|
|
compiler: clang
|
|
os: osx
|
|
script: brew install --HEAD jq && brew test jq
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: change
|
|
|
|
before_install:
|
|
- aclocal
|
|
- automake --force-missing --add-missing
|
|
- autoconf
|