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 a3f3420 commit aab6f47
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name: CI

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

jobs:
Package:
Expand All @@ -11,15 +11,14 @@ jobs:
image: registry.opensuse.org/yast/head/containers/yast-cpp:latest

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

- name: Git Checkout
uses: actions/checkout@v2
- name: Prepare System
run: zypper --non-interactive in --no-recommends libcurl-devel

- name: Prepare System
run: zypper --non-interactive in --no-recommends libcurl-devel

- name: Package Build
run: yast-ci-cpp
- name: Package Build
run: yast-ci-cpp

Checks:
runs-on: ubuntu-latest
Expand All @@ -28,18 +27,17 @@ jobs:
strategy:
fail-fast: false
matrix:
distro: [ "tumbleweed", "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: syntax
run: rake check:syntax
- name: syntax
run: rake check:syntax

- name: pot
run: rake check:pot
- name: pot
run: rake check:pot

0 comments on commit aab6f47

Please sign in to comment.