Use wayback machine to access mentioned blog post. (#86) #1
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
test_rpmbuild_centos6: | |
runs-on: ubuntu-latest | |
name: CentOS6 RPMBuild | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: seporaitis/rpmbuild-centos6-github-action@master | |
with: | |
# NOTE(seporaitis): rpmbuild doesn't like when spec is not owned by | |
# root. | |
command: (chown root:root *.spec; make rpm) | |
test_rpmbuild_centos7: | |
runs-on: ubuntu-latest | |
name: CentOS7 RPMBuild | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: seporaitis/rpmbuild-centos7-github-action@master | |
with: | |
# NOTE(seporaitis): rpmbuild doesn't like when spec is not owned by | |
# root. | |
command: (chown root:root *.spec; make rpm) |