2021-01-04 09:26:56 +08:00
|
|
|
name: MacOS (make with BTADDON) Build and Test
|
2021-01-04 09:05:19 +08:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: macos-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-01-05 02:23:05 +08:00
|
|
|
- name: Set Git http.postBuffer to something high
|
|
|
|
run: git config --global http.postBuffer 524288000
|
2021-01-04 09:05:19 +08:00
|
|
|
- name: Update brew repos
|
|
|
|
run: brew update
|
|
|
|
- name: Tap RfidResearchGroup/proxmark3
|
|
|
|
run: brew tap RfidResearchGroup/proxmark3
|
|
|
|
- name: Install dependencies
|
2021-01-04 09:17:58 +08:00
|
|
|
run: brew install readline qt5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc
|
2021-01-04 09:05:19 +08:00
|
|
|
- name: Build
|
2021-01-04 09:26:56 +08:00
|
|
|
run: make clean && make V=1 PLATFORM_EXTRAS=BTADDON
|
2021-01-04 09:05:19 +08:00
|
|
|
- name: Test
|
|
|
|
run: make check
|