Initial support for M702-2 Phoenix 2 #48
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
fedora-rpm-build: | |
runs-on: ubuntu-latest | |
container: fedora:latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install tools and dependencies | |
run: | | |
dnf install -y rpm-build findutils clang-tools-extra 'dnf-command(builddep)' | |
dnf builddep -y mouse_m908.spec | |
- name: build mouse_m908 rpm package | |
run: | | |
make -j4 rpm |