From 2f76e7e290432be75c31db81e8ca6cde04a6f9c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Mon, 6 Nov 2023 11:10:07 +0100 Subject: [PATCH] Fixed CI - build only against Tumbleweed --- .github/workflows/ci.yml | 38 ++++++++++++++++++-------------------- 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0694fb2..e396326 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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