Skip to content

Commit 346cffd

Browse files
Switch Travis build to use OpenSUSE-based builttravisciimage
1 parent dcfc1eb commit 346cffd

File tree

2 files changed

+12
-19
lines changed

2 files changed

+12
-19
lines changed

.travis.yml

+8-19
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,13 @@
11
language: cpp
2-
compiler: gcc
3-
sudo: true
4-
dist: trusty
2+
sudo: required
3+
os:
4+
- linux
55

6-
env:
7-
global:
8-
- CC_TEST_REPORTER_ID=2727af6b46213a350cb85449e8d3b538edcd7221168f668c940ef86f07718184
9-
- GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
6+
services:
7+
- docker
108

119
before_install:
12-
- wget http://download.opensuse.org/repositories/home:hpcoder1/xUbuntu_14.04/Release.key
13-
- sudo apt-key add - < Release.key
14-
- echo 'deb http://download.opensuse.org/repositories/home:/hpcoder1/xUbuntu_14.04/ /' >/tmp/hpcoders.list
15-
- sudo mv /tmp/hpcoders.list /etc/apt/sources.list.d/
16-
- sudo apt-get update -qq
17-
- sudo apt-get install -y --allow-unauthenticated json-spirit
18-
- sudo apt-get install -y libboost-dev
19-
- sudo apt-get install -y libxml2-utils
20-
- sudo apt-get install -y python3
21-
- sudo apt-get install -y libtirpc-dev
10+
- docker pull highperformancecoder/builttravisciimage
2211

23-
script:
24-
- make TRAVIS=1 travis-test
12+
script:
13+
- docker build --network=host .

Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM highperformancecoder/builttravisciimage
2+
COPY . /root
3+
RUN cd /root && make TRAVIS=1 travis-test
4+

0 commit comments

Comments
 (0)