Skip to content

Commit

Permalink
Merge pull request #27 from yast/docker_at_travis
Browse files Browse the repository at this point in the history
Use Docker at Travis
  • Loading branch information
lslezak committed Jan 20, 2017
2 parents 86eb6e9 + b732195 commit bc52218
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
23 changes: 9 additions & 14 deletions .travis.yml
@@ -1,16 +1,11 @@
language: cpp
compiler:
- gcc
sudo: required
language: bash
services:
- docker

before_install:
# disable rvm, use system Ruby
- rvm reset
- wget https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/travis_setup.sh
- sh ./travis_setup.sh -p "rake yast2-devtools yast2-testsuite yast2 yast2-core-dev yast2-pam doxygen" -g "yast-rake gettext"
- docker build -t yast-nis-client-image .
script:
- rake check:syntax
- rake check:pot
- make -f Makefile.cvs
- make
- sudo make install
- make check

# the "yast-travis-cpp" script is included in the base yastdevel/cpp image
# see https://github.com/yast/docker-yast-cpp/blob/master/yast-travis-cpp
- docker run -it -e TRAVIS=1 -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" yast-nis-client-image yast-travis-cpp
7 changes: 7 additions & 0 deletions Dockerfile
@@ -0,0 +1,7 @@
FROM yastdevel/cpp
RUN zypper --gpg-auto-import-keys --non-interactive in --no-recommends \
yast2-testsuite \
yast2-pam

COPY . /usr/src/app

0 comments on commit bc52218

Please sign in to comment.