Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ jobs:
- libubsan0
- parallel
- jq
- gdb
before_install:
- mkdir bin
- ln -s /usr/bin/gcc-5 bin/gcc
Expand All @@ -115,7 +116,7 @@ jobs:
compiler: clang
cache: ccache
before_install:
- HOMEBREW_NO_AUTO_UPDATE=1 brew install ccache parallel
- HOMEBREW_NO_AUTO_UPDATE=1 brew install ccache parallel gdb
- export PATH=$PATH:/usr/local/opt/ccache/libexec
env: COMPILER="ccache clang++"

Expand All @@ -134,6 +135,7 @@ jobs:
- g++-5
- libubsan0
- jq
- gdb
before_install:
- mkdir bin
- ln -s /usr/bin/gcc-5 bin/gcc
Expand Down Expand Up @@ -162,6 +164,7 @@ jobs:
- libstdc++-5-dev
- libubsan0
- jq
- gdb
before_install:
- mkdir bin
- ln -s /usr/bin/gcc-5 bin/gcc
Expand Down Expand Up @@ -189,6 +192,7 @@ jobs:
packages:
- g++-7
- jq
- gdb
before_install:
- mkdir bin
- ln -s /usr/bin/gcc-7 bin/gcc
Expand Down Expand Up @@ -216,6 +220,7 @@ jobs:
packages:
- g++-7
- jq
- gdb
before_install:
- mkdir bin
- ln -s /usr/bin/gcc-7 bin/gcc
Expand Down Expand Up @@ -249,6 +254,7 @@ jobs:
- libubsan0
- parallel
- jq
- gdb
before_install:
- mkdir bin
# Use gcc/g++ 5 for tests, as Clang doesn't work yet
Expand All @@ -270,7 +276,7 @@ jobs:
compiler: clang
cache: ccache
before_install:
- HOMEBREW_NO_AUTO_UPDATE=1 brew install ccache
- HOMEBREW_NO_AUTO_UPDATE=1 brew install ccache gdb
- export PATH=$PATH:/usr/local/opt/ccache/libexec
env:
- BUILD_SYSTEM=cmake
Expand Down
2 changes: 1 addition & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ phases:
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA9EF27F
- add-apt-repository ppa:openjdk-r/ppa -y
- apt-get update -y
- apt-get install -y g++-5 flex bison make git libwww-perl patch ccache libc6-dev-i386 jq
- apt-get install -y g++-5 flex bison make git libwww-perl patch ccache libc6-dev-i386 jq gdb
- apt-get install -y openjdk-8-jdk
- update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 1
- update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 1
Expand Down
Loading