Update the changelog #225
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: almalinux9-build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: almalinux:9 | |
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 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 |