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

Migrate workflow to verify RPM installable to GitHub Actions (#32150) #32150

Merged
Merged
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
30 changes: 30 additions & 0 deletions .github/workflows/verify-opensource-rpm-installable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Verify open source RPM installable

on:
workflow_dispatch:

pull_request:
paths:
- .github/workflows/verify-opensource-rpm-installable.yml
branches:
- master

schedule:
- cron: '0 0 * * *'

jobs:
verify-opensource-rpm-installable:
runs-on: ubuntu-latest

container:
image: almalinux:8

steps:
- name: Install Vespa
run: |
dnf list llvm-libs --showduplicates
dnf install -y dnf-plugins-core
dnf config-manager --add-repo https://copr.fedorainfracloud.org/coprs/g/vespa/vespa/repo/epel-8/group_vespa-vespa-epel-8.repo
dnf config-manager --enable powertools
dnf install -y epel-release
dnf install -y vespa
13 changes: 0 additions & 13 deletions screwdriver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -302,19 +302,6 @@ jobs:
exit 1
fi

verify-opensource-rpm-installable:
image: almalinux:8
annotations:
screwdriver.cd/buildPeriodically: H 0 * * *
steps:
- install: |
dnf list llvm-libs --showduplicates
dnf install -y dnf-plugins-core
dnf config-manager --add-repo https://copr.fedorainfracloud.org/coprs/g/vespa/vespa/repo/epel-8/group_vespa-vespa-epel-8.repo
dnf config-manager --enable powertools
dnf install -y epel-release
dnf install -y vespa

mirror-copr-rpms-to-archive:
requires: [publish-release]
image: docker.io/almalinux:8
Expand Down