Update README.md #3
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: Rocky9 | |
on: | |
push: | |
branches: [ master ] | |
paths-ignores: | |
- '*.md' | |
pull_request: | |
branches: [ master ] | |
jobs: | |
Rocky9: | |
runs-on: ubuntu-latest | |
container: rockylinux/rockylinux:9 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install required packages | |
run: | | |
dnf install -y sudo git gcc gcc-c++ make libusbx-devel autoconf libtool which | |
- name: Setup | |
run: | | |
make init | |
make conf | |
make build | |
sudo make install | |
- name: Environment Check | |
run: | | |
make vars | |
make exist |