mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-24 16:14:59 +08:00
22 lines
646 B
YAML
22 lines
646 B
YAML
name: MacOS (make with BTADDON) Build and Test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set Git http.postBuffer to something high
|
|
run: git config --global http.postBuffer 524288000
|
|
- name: Update brew repos
|
|
run: brew update
|
|
- name: Tap RfidResearchGroup/proxmark3
|
|
run: brew tap RfidResearchGroup/proxmark3
|
|
- name: Install dependencies
|
|
run: brew install readline qt5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc
|
|
- name: Build
|
|
run: make clean && make V=1 PLATFORM_EXTRAS=BTADDON
|
|
- name: Test
|
|
run: make check
|