mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-03 22:53:58 +08:00
gh actions: Add ubuntu with make w/ btaddon and cmake
This commit is contained in:
parent
fdb28dd95e
commit
7db332a6de
4 changed files with 42 additions and 2 deletions
20
.github/workflows/ubuntu-cmake.yml
vendored
Normal file
20
.github/workflows/ubuntu-cmake.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: Ubuntu (cmake) Build and Test
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build-and-test:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Update apt repos
|
||||
run: sudo apt-get update
|
||||
- name: Update packages
|
||||
run: sudo apt-get upgrade -yqq
|
||||
- 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: Build
|
||||
run: mkdir -p client/build && ( cd client/build && cmake .. && make VERBOSE=1 )
|
||||
- name: Test
|
||||
run: make client/check CHECKARGS="--clientbin ./client/build/proxmark3"
|
20
.github/workflows/ubuntu-make-btaddon.yml
vendored
Normal file
20
.github/workflows/ubuntu-make-btaddon.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: Ubuntu (make with BTADDON) Build and Test
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build-and-test:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Update apt repos
|
||||
run: sudo apt-get update
|
||||
- name: Update packages
|
||||
run: sudo apt-get upgrade -yqq
|
||||
- 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: Build
|
||||
run: make clean && make V=1 PLATFORM_EXTRAS=BTADDON
|
||||
- name: Test
|
||||
run: make check
|
|
@ -1,9 +1,9 @@
|
|||
name: Ubuntu Build and Test
|
||||
name: Ubuntu (make) Build and Test
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
build-and-test:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
Loading…
Reference in a new issue