1 name: MacOS Build and Test
22 - uses: actions/checkout@v4
24 - uses: actions/setup-python@v5
26 python-version: '3.12'
28 - name: Set Git http.postBuffer to something high
29 run: git config --global http.postBuffer 524288000
31 - name: Handle homebrew quirks
32 run: rm -rf /usr/local/bin/2to3
34 - name: Update brew repos
36 continue-on-error: true
38 - name: Tap RfidResearchGroup/proxmark3
39 run: brew tap RfidResearchGroup/proxmark3
41 - name: Install dependencies
42 run: brew install readline coreutils qt@5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc openssl gd
43 continue-on-error: true
45 - name: Install Python dependencies
46 run: pip install -r tools/requirements.txt
54 run: make -j$((`sysctl -n hw.ncpu` + 1))
63 - uses: actions/checkout@v4
65 - uses: actions/setup-python@v5
67 python-version: '3.12'
69 - name: Set Git http.postBuffer to something high
70 run: git config --global http.postBuffer 524288000
72 - name: Handle homebrew quirks
73 run: rm -rf /usr/local/bin/2to3
75 - name: Update brew repos
77 continue-on-error: true
79 - name: Tap RfidResearchGroup/proxmark3
80 run: brew tap RfidResearchGroup/proxmark3
82 - name: Install dependencies
83 run: brew install readline coreutils qt@5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc openssl gd
84 continue-on-error: true
86 - name: Install Python dependencies
87 run: pip install -r tools/requirements.txt
95 PLATFORM_EXTRAS: BTADDON
96 run: make -j$((`sysctl -n hw.ncpu` + 1))
102 runs-on: macos-latest
105 - uses: actions/checkout@v4
107 - uses: actions/setup-python@v5
109 python-version: '3.12'
111 - name: Set Git http.postBuffer to something high
112 run: git config --global http.postBuffer 524288000
114 - name: Handle homebrew quirks
115 run: rm -rf /usr/local/bin/2to3
117 - name: Update brew repos
119 continue-on-error: true
121 - name: Tap RfidResearchGroup/proxmark3
122 run: brew tap RfidResearchGroup/proxmark3
124 - name: Install dependencies
125 run: brew install readline coreutils qt@5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc openssl gd
126 continue-on-error: true
128 - name: Install Python dependencies
129 run: pip install -r tools/requirements.txt
131 - name: Prepare Build Folders
133 mkdir -p client/build
134 ln -s ../cmdscripts client/build/
135 ln -s ../luascripts client/build/
136 ln -s ../pyscripts client/build/
137 ln -s ../lualibs client/build/
139 - name: Initiate cmake environment
141 working-directory: client/build/
146 run: make -j$((`sysctl -n hw.ncpu` + 1))
147 working-directory: client/build/
151 CHECKARGS: "--clientbin ./client/build/proxmark3"
152 run: make client/check