Verify open source RPM installable #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 -y config-manager --add-repo https://raw.githubusercontent.com/vespa-engine/vespa/master/dist/vespa-engine.repo | |
dnf config-manager --enable powertools | |
dnf install -y epel-release | |
dnf install -y vespa |