Skip to content

Commit

Permalink
ci: use ubuntu 18.04 for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
JaCzekanski committed Aug 17, 2019
1 parent 7dc0c85 commit 92cfe5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -7,14 +7,17 @@ matrix:
include: include:
- name: Linux Clang6 - name: Linux Clang6
os: linux os: linux
dist: bionic
services: docker services: docker
script: "./.travis/linux/run-container.sh 6" script: "./.travis/linux/run-container.sh 6"
- name: Linux Clang8 - name: Linux Clang8
os: linux os: linux
dist: bionic
services: docker services: docker
script: "./.travis/linux/run-container.sh 8" script: "./.travis/linux/run-container.sh 8"
- name: Android - name: Android
os: linux os: linux
dist: bionic
services: docker services: docker
before_install: openssl aes-256-cbc -K $encrypted_7333c7dd5b15_key -iv $encrypted_7333c7dd5b15_iv -in android/avocado.keystore.enc -out android/avocado.keystore -d before_install: openssl aes-256-cbc -K $encrypted_7333c7dd5b15_key -iv $encrypted_7333c7dd5b15_iv -in android/avocado.keystore.enc -out android/avocado.keystore -d
script: "./.travis/android/run-container.sh" script: "./.travis/android/run-container.sh"
Expand Down
4 changes: 2 additions & 2 deletions .travis/linux/build.sh
Expand Up @@ -7,8 +7,8 @@ export OS=linux64
export DATE=`date +%Y%m%d` export DATE=`date +%Y%m%d`
export COMMIT=`git rev-parse --short=7 HEAD` export COMMIT=`git rev-parse --short=7 HEAD`
export ARTIFACT=avocado-$OS-$DATE-$COMMIT export ARTIFACT=avocado-$OS-$DATE-$COMMIT
export CC="ccache clang-6.0 -fcolor-diagnostics" export CC="ccache cc -fcolor-diagnostics"
export CXX="ccache clang++-6.0 -fcolor-diagnostics" export CXX="ccache c++ -fcolor-diagnostics"


# Configure cache # Configure cache
ccache --set-config=sloppiness=pch_defines,time_macros ccache --set-config=sloppiness=pch_defines,time_macros
Expand Down

0 comments on commit 92cfe5c

Please sign in to comment.