Skip to content

Commit

Permalink
Fixed CI - build only against Tumbleweed
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Nov 6, 2023
1 parent 96569d2 commit 2f76e7e
Showing 1 changed file with 18 additions and 20 deletions.
38 changes: 18 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@

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

name: CI

on: [push, pull_request]
on: [ push, pull_request ]

jobs:
Package:
Expand All @@ -12,31 +11,30 @@ jobs:
strategy:
fail-fast: false
matrix:
distro: [ "leap_latest" ]
distro: [ "tumbleweed" ]

container:
image: registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby

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

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

- name: Install Prerequisites
# use jing for validation instead of xmllint
run: |-
rake build_dependencies:install
zypper --non-interactive install --no-recommends jing
- name: Install Prerequisites
# use jing for validation instead of xmllint
run: |-
rake build_dependencies:install
zypper --non-interactive install --no-recommends jing
# just for easier debugging...
- name: Inspect Installed Packages
run: rpm -qa | sort
# just for easier debugging...
- name: Inspect Installed Packages
run: rpm -qa | sort

- name: Validate XML
run: rake test:validate
- name: Validate XML
run: rake test:validate

- name: Check Translations
run: rake check:pot
- name: Check Translations
run: rake check:pot

- name: Package Build
run: yast-ci-ruby -o package
- name: Package Build
run: yast-ci-ruby -o package

0 comments on commit 2f76e7e

Please sign in to comment.