2022-10-27 04:32:04 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Iceman 2022
|
|
|
|
#
|
|
|
|
# This script is to be run from proxmark root folder inside the docker env
|
|
|
|
# docker/archlinux/run_tests.sh;
|
|
|
|
#
|
|
|
|
# Script contains two phases.
|
|
|
|
#
|
|
|
|
# -- Init / setup phase
|
|
|
|
# Script to be run inside docker env. First install some dependencies for docker image.
|
|
|
|
#
|
|
|
|
# -- Build phase begins
|
|
|
|
# make builds
|
|
|
|
# cmake client builds
|
|
|
|
# of the different possible PLATFORM (PM3RDV4 / PM3GENERIC) and BTADDON combos
|
|
|
|
|
|
|
|
cat << EOF |sudo tee -a /etc/pacman.conf
|
|
|
|
|
|
|
|
[testing]
|
|
|
|
Include = /etc/pacman.d/mirrorlist
|
|
|
|
|
|
|
|
[community-testing]
|
|
|
|
Include = /etc/pacman.d/mirrorlist
|
|
|
|
|
|
|
|
[staging]
|
|
|
|
Include = /etc/pacman.d/mirrorlist
|
|
|
|
EOF
|
|
|
|
|
|
|
|
sudo pacman -Syu
|
|
|
|
|
|
|
|
# search available versions
|
|
|
|
pacman -Ss '^arm-none-eabi-gcc$'
|
|
|
|
pacman -Ss '^gcc$'
|
|
|
|
|
|
|
|
# depending on where the latest bleeding edge is:
|
|
|
|
# sudo pacman -S community-testing/arm-none-eabi-gcc
|
|
|
|
# sudo pacman -S arm-none-eabi-gcc
|
|
|
|
# sudo pacman -S staging/gcc
|
|
|
|
# sudo pacman -S testing/gcc
|
|
|
|
# sudo pacman -S gcc
|
|
|
|
|
2023-07-16 23:25:43 +08:00
|
|
|
python3 -m venv /tmp/venv
|
|
|
|
source /tmp/venv/bin/activate
|
|
|
|
python3 -m pip install --use-pep517 pyaes
|
|
|
|
python3 -m pip install ansicolors sslcrypto
|
2023-01-16 01:46:14 +08:00
|
|
|
tools/release_tests.sh
|
2023-07-16 23:25:43 +08:00
|
|
|
deactivate
|