mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-03 22:53:58 +08:00
github actions: add macos action
This commit is contained in:
parent
2d6119b5cd
commit
fdb28dd95e
1 changed files with 22 additions and 0 deletions
22
.github/workflows/macos-build-and-test.yml
vendored
Normal file
22
.github/workflows/macos-build-and-test.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: MacOS Build and Test
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Update brew repos
|
||||
run: brew update
|
||||
- name: Update packages
|
||||
run: brew upgrade
|
||||
- name: Tap RfidResearchGroup/proxmark3
|
||||
run: brew tap RfidResearchGroup/proxmark3
|
||||
- name: Install dependencies
|
||||
run: readline qt5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc
|
||||
- name: Build
|
||||
run: make clean && make V=1
|
||||
- name: Test
|
||||
run: make check
|
Loading…
Reference in a new issue