Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move from Travis to GitHub Actions #13

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions

name: CI

on: [push, pull_request]

jobs:
Build:
runs-on: ubuntu-latest

strategy:
matrix:
flavour:
- sle12-sp3
- sle12-sp4
- sle12-sp5
# Disabled, unfortunately zypper segfaults in this build :-(
# - sle15
- sle15-sp1

steps:

- name: Git Checkout
uses: actions/checkout@v2

- name: Build the Docker Image
run: docker build -t yast-ruby -f Dockerfile.${{ matrix.flavour }} .

20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

80 changes: 0 additions & 80 deletions Dockerfile.latest

This file was deleted.