We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d0b02a commit 5959272Copy full SHA for 5959272
.travis.yml
@@ -31,15 +31,23 @@ matrix:
31
include:
32
- env: ['os_image=ubuntu:16.04', gcc_version=5]
33
services: [docker]
34
+ - os: osx
35
+
36
+addons:
37
+ apt:
38
+ packages: python2.7
39
40
addons:
41
apt:
42
packages: python2.7
43
44
script:
- # We don't want to write the script inline because of Travis kludginess --
- # it looks like it escapes " and \ in scripts when using `matrix:`.
- - ./build/fbcode_builder/travis_docker_build.sh
45
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]];
46
+ then
47
+ folly/build/bootstrap-osx-homebrew.sh;
48
+ else
49
+ ./build/fbcode_builder/travis_docker_build.sh;
50
+ fi
51
52
notifications:
53
webhooks: https://code.facebook.com/travis/webhook/
0 commit comments