1 name: Ubuntu Build and Test
20 runs-on: ubuntu-latest
23 - uses: actions/checkout@v4
25 - uses: actions/setup-python@v5
27 python-version: '3.12'
29 - name: Update apt repos
30 run: sudo apt-get update
32 - name: Install dependencies
33 run: sudo apt-get install -yqq make autoconf build-essential ca-certificates pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev qtbase5-dev libbz2-dev liblz4-dev libbluetooth-dev libpython3-dev python3 python3-dev libpython3-all-dev liblua5.4-dev liblua5.4-0 lua5.4 sed libssl-dev libgd-dev
35 - name: Install Python dependencies
36 run: pip install -r tools/requirements.txt
44 run: make -j$((`nproc` + 1))
50 runs-on: ubuntu-latest
53 - uses: actions/checkout@v4
55 - uses: actions/setup-python@v5
57 python-version: '3.12'
59 - name: Update apt repos
60 run: sudo apt-get update
62 - name: Install dependencies
63 run: sudo apt-get install -yqq make autoconf build-essential ca-certificates pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev qtbase5-dev libbz2-dev liblz4-dev libbluetooth-dev libpython3-dev python3 python3-dev libpython3-all-dev liblua5.4-dev liblua5.4-0 lua5.4 sed libssl-dev libgd-dev
65 - name: Install Python dependencies
66 run: pip install -r tools/requirements.txt
74 PLATFORM_EXTRAS: BTADDON
75 run: make -j$((`nproc` + 1))
81 runs-on: ubuntu-latest
84 - uses: actions/checkout@v4
86 - uses: actions/setup-python@v5
88 python-version: '3.12'
90 - name: Update apt repos
91 run: sudo apt-get update
93 - name: Install dependencies
94 run: sudo apt-get install -yqq make autoconf build-essential ca-certificates pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev qtbase5-dev libbz2-dev liblz4-dev libbluetooth-dev libpython3-dev python3 python3-dev libpython3-all-dev liblua5.4-dev liblua5.4-0 lua5.4 sed libssl-dev libgd-dev
96 - name: Install Python dependencies
97 run: pip install -r tools/requirements.txt
99 - name: Prepare Build Folders
101 mkdir -p client/build
102 ln -s ../cmdscripts client/build/
103 ln -s ../luascripts client/build/
104 ln -s ../pyscripts client/build/
105 ln -s ../lualibs client/build/
107 - name: Initiate cmake environment
109 working-directory: client/build/
114 run: make -j$((`nproc` + 1))
115 working-directory: client/build/
119 CHECKARGS: "--clientbin ./client/build/proxmark3"
120 run: make client/check