File tree 2 files changed +12
-19
lines changed
2 files changed +12
-19
lines changed Original file line number Diff line number Diff line change 1
1
language : cpp
2
- compiler : gcc
3
- sudo : true
4
- dist : trusty
2
+ sudo : required
3
+ os :
4
+ - linux
5
5
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
10
8
11
9
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
22
11
23
- script :
24
- - make TRAVIS=1 travis-test
12
+ script :
13
+ - docker build --network=host .
Original file line number Diff line number Diff line change
1
+ FROM highperformancecoder/builttravisciimage
2
+ COPY . /root
3
+ RUN cd /root && make TRAVIS=1 travis-test
4
+
You can’t perform that action at this time.
0 commit comments