mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
update docker setups
This commit is contained in:
+2
-1
@@ -1,5 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
for os in archlinux debian-12-bookworm debian-12-bookworm-arm64 debian-12-bookworm-armhf debian-13-trixie fedora-36 fedora-37 homebrew kali opensuse-leap opensuse-tumbleweed parrot-core-latest ubuntu-20.04 ubuntu-22.04; do
|
||||
for os in archlinux debian-12-bookworm debian-12-bookworm-arm64 debian-12-bookworm-armhf debian-13-trixie debian-14-forky fedora-41 fedora-42 fedora-43 homebrew kali opensuse-leap opensuse-tumbleweed parrot-core-latest ubuntu-24.04 ubuntu-24.10 ubuntu-25.04; do
|
||||
echo -e "\n\n================= Building for $os ======================\n"
|
||||
( cd $os && ../build.sh )
|
||||
done
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
# Notes on run_tests.sh script
|
||||
This script runs a bunch of different builds with make and cmake together
|
||||
with the different combos of RDV4, GENERIC, BTADDON combos.
|
||||
|
||||
If all tests OK, the script will finish with PASS.
|
||||
|
||||
|
||||
# Notes to run tests
|
||||
The script is to be run in proxmark root folder inside the docker env.
|
||||
|
||||
```
|
||||
docker/debian-14-forky/run_tests.sh;
|
||||
```
|
||||
|
||||
Or if you want to run single test,
|
||||
|
||||
```
|
||||
sudo apt update
|
||||
make clean; make -j
|
||||
python3 -m venv /tmp/venv
|
||||
source /tmp/venv/bin/activate
|
||||
python3 -m pip install --use-pep517 pyaes
|
||||
python3 -m pip install ansicolors sslcrypto
|
||||
tools/pm3_tests.sh --long
|
||||
deactivate
|
||||
```
|
||||
@@ -0,0 +1 @@
|
||||
DOCKER_IMAGE=pm3-debian-forky:1.0
|
||||
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env bash
|
||||
# This script is to be run from proxmark root folder inside the docker env
|
||||
# docker/debian-14-forky/run_tests.sh;
|
||||
|
||||
sudo apt update && sudo apt upgrade -y
|
||||
python3 -m venv /tmp/venv
|
||||
source /tmp/venv/bin/activate
|
||||
python3 -m pip install --use-pep517 pyaes
|
||||
python3 -m pip install ansicolors sslcrypto
|
||||
tools/release_tests.sh
|
||||
deactivate
|
||||
Reference in New Issue
Block a user