mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-01 08:27:59 +00:00
b6a05070fa
MFC after: 2 weeks Relnotes: yes
19 lines
300 B
YAML
19 lines
300 B
YAML
language: c
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
before_install:
|
|
- if [ $TRAVIS_OS_NAME == "linux" ]; then
|
|
sudo apt-get -qq update;
|
|
sudo apt-get -qq install byacc flex;
|
|
elif [ $TRAVIS_OS_NAME == "osx" ]; then
|
|
brew update;
|
|
brew install byacc flex;
|
|
fi
|