Skip to content

Commit

Permalink
chore: migrate workflow to verify RPM installable to GitHub Actions (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
glebashnik authored Aug 15, 2024
1 parent 05da7c0 commit dbfb2cf
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 13 deletions.
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

0 comments on commit dbfb2cf

Please sign in to comment.