add system modules path to lmod cache #31
Workflow file for this run
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: Build RPM | |
on: [push, pull_request] | |
jobs: | |
rpmbuild: | |
runs-on: ubuntu-latest | |
container: | |
image: rockylinux:8 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install rpmbuild | |
run: dnf -y install rpm-build | |
- name: Run build script | |
run: ./bdist_rpm.sh |