whitespace fix #205
This file contains hidden or 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: centosstream10-build | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: quay.io/centos/centos:stream10 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: getting envinronment info | |
| run: uname -a | |
| - name: print version | |
| run: cat /etc/*release | |
| - name: installing dependencies 1 | |
| run: dnf -y install epel-release dnf-plugins-core gawk python3-dnf-plugins-core util-linux --nogpgcheck | |
| - name: installing dependencies 2 | |
| run: dnf -y builddep ./fapolicyd.spec --enablerepo='crb' --nogpgcheck | |
| - name: generate config files | |
| run: ./autogen.sh | |
| - name: configure | |
| run: ./configure --with-rpm --with-audit --disable-shared --disable-dependency-tracking | |
| - name: build | |
| run: make | |
| - name: check | |
| run: make check | |
| - name: dist | |
| run: make dist |