mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 10:14:34 +08:00
119 lines
3.4 KiB
YAML
119 lines
3.4 KiB
YAML
name: Ubuntu Build and Test
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'doc/**'
|
|
- 'docker/**'
|
|
- 'traces/**'
|
|
- '.vscode/**'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'doc/**'
|
|
- 'docker/**'
|
|
- 'traces/**'
|
|
- '.vscode/**'
|
|
|
|
|
|
jobs:
|
|
ubuntu-make:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Update apt repos
|
|
run: sudo apt-get update
|
|
|
|
- name: Install dependencies
|
|
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 libbluetooth-dev libpython3-dev python3 python3-dev libpython3-all-dev liblua5.2-dev liblua5.2-0-dbg liblua5.2-0 lua5.2 sed
|
|
|
|
- name: Install Python dependencies
|
|
run: |
|
|
python3 -m pip install --upgrade pip
|
|
python3 -m pip install setuptools
|
|
python3 -m pip install ansicolors sslcrypto
|
|
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
|
|
|
- name: make clean
|
|
run: make clean
|
|
|
|
- name: Build
|
|
env:
|
|
V: 1
|
|
run: make
|
|
|
|
- name: Test
|
|
run: make check
|
|
|
|
ubuntu-make-btaddon:
|
|
if: always()
|
|
needs: [ubuntu-make]
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Update apt repos
|
|
run: sudo apt-get update
|
|
|
|
- name: Install dependencies
|
|
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 libbluetooth-dev libpython3-dev python3 python3-dev libpython3-all-dev liblua5.2-dev liblua5.2-0-dbg liblua5.2-0 lua5.2 sed
|
|
|
|
- name: Install Python dependencies
|
|
run: |
|
|
python3 -m pip install --upgrade pip
|
|
python3 -m pip install setuptools
|
|
python3 -m pip install ansicolors sslcrypto
|
|
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
|
|
|
- name: make clean
|
|
run: make clean
|
|
|
|
- name: Build
|
|
env:
|
|
V: 1
|
|
PLATFORM_EXTRAS: BTADDON
|
|
run: make
|
|
|
|
- name: Test
|
|
run: make check
|
|
|
|
ubuntu-cmake:
|
|
if: always()
|
|
needs: [ubuntu-make, ubuntu-make-btaddon]
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Update apt repos
|
|
run: sudo apt-get update
|
|
|
|
- name: Install dependencies
|
|
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 libbluetooth-dev libpython3-dev python3 python3-dev libpython3-all-dev liblua5.2-dev liblua5.2-0-dbg liblua5.2-0 lua5.2 sed
|
|
|
|
- name: Install Python dependencies
|
|
run: |
|
|
python3 -m pip install --upgrade pip
|
|
python3 -m pip install setuptools
|
|
python3 -m pip install ansicolors sslcrypto
|
|
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
|
|
|
- name: Prepare Build Folders
|
|
run: mkdir -p client/build
|
|
|
|
- name: Initiate cmake environment
|
|
run: cmake ..
|
|
working-directory: client/build/
|
|
|
|
- name: Build
|
|
env:
|
|
VERBOSE: 1
|
|
run: make
|
|
working-directory: client/build/
|
|
|
|
- name: Test
|
|
env:
|
|
CHECKARGS: "--clientbin ./client/build/proxmark3"
|
|
run: make client/check
|