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 16, 2017
1 parent cfbb84a commit d0dbf19
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -97,6 +97,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-gtk-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-gtk-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 → README.md
@@ -1,4 +1,6 @@
Split-off package from libyui-gtk

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

This repo now contains the YaST GTK packager.
The libyui-gtk now lives separated from the packager in https://github.com/libyui/libyui-gtk
13 changes: 13 additions & 0 deletions Rakefile
@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
# make continuous integration using rubygem-packaging_rake_tasks and
# rubygem-libyui-rake.
# Copyright © 2014 SUSE LLC
# MIT license

require "libyui/rake"

Libyui::Tasks.configuration do |conf|
#lets ignore license check for now
conf.skip_license_check << /.*/
conf.obs_sr_project = nil
end

0 comments on commit d0dbf19

Please sign in to comment.