Skip to content

Commit

Permalink
Use Docker at Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Feb 14, 2017
1 parent 9e5bf24 commit 75b5693
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -94,6 +94,7 @@ tramp
*_archive
.*
!.gitignore
!.travis.yml
*~
*.bak
*.log
Expand Down
11 changes: 11 additions & 0 deletions .travis.yml
@@ -0,0 +1,11 @@
sudo: required
language: bash
services:
- docker

before_install:
- docker build -t libyui-ncurses-pkg-image .
script:
# the "libyui-travis" script is included in the base libyui/devel image
# see https://github.com/libyui/docker-devel/blob/master/libyui-travis
- docker run -it libyui-ncurses-pkg-image libyui-travis
4 changes: 4 additions & 0 deletions Dockerfile
@@ -0,0 +1,4 @@
# Use the libyui/devel image as the base
FROM libyui/devel

COPY . /usr/src/app
2 changes: 2 additions & 0 deletions README.md
@@ -1,5 +1,7 @@
# YaST - Text Mode Software Management

[![Build Status](https://travis-ci.org/libyui/libyui-ncurses-pkg.svg?branch=master)](https://travis-ci.org/libyui/libyui-ncurses-pkg)

This module provides the ncurses version of the YaST Package Selector which is used to update, install or delete individual packages.

An overview about package handling in general is available on [Wiki](https://github.com/libyui/libyui-ncurses-pkg/wiki).
Expand Down

0 comments on commit 75b5693

Please sign in to comment.