mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-10 04:37:37 +01:00
Fixed CI for debian 10 and 11
This commit is contained in:
parent
8596c26f7e
commit
78e40f1f76
2
docker_builds/debian_bullseye/Dockerfile
Normal file
2
docker_builds/debian_bullseye/Dockerfile
Normal file
@ -0,0 +1,2 @@
|
||||
FROM debian:buster
|
||||
COPY do_build.sh /root
|
17
docker_builds/debian_bullseye/do_build.sh
Normal file
17
docker_builds/debian_bullseye/do_build.sh
Normal file
@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
cd /root
|
||||
|
||||
apt update
|
||||
apt install -y build-essential cmake git libfftw3-dev libglfw3-dev libglew-dev libvolk2-dev libsoapysdr-dev libairspyhf-dev libairspy-dev libiio-dev libad9361-dev librtaudio-dev libhackrf-dev librtlsdr-dev
|
||||
|
||||
git clone https://github.com/AlexandreRouma/SDRPlusPlus
|
||||
|
||||
cd SDRPlusPlus
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make -j2
|
||||
|
||||
cd ..
|
||||
sh make_debian_package.sh ./build
|
2
docker_builds/debian_buster/Dockerfile
Normal file
2
docker_builds/debian_buster/Dockerfile
Normal file
@ -0,0 +1,2 @@
|
||||
FROM debian:bullseye
|
||||
COPY do_build.sh /root
|
17
docker_builds/debian_buster/do_build.sh
Normal file
17
docker_builds/debian_buster/do_build.sh
Normal file
@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
cd /root
|
||||
|
||||
apt update
|
||||
apt install -y build-essential cmake git libfftw3-dev libglfw3-dev libglew-dev libvolk1-dev libsoapysdr-dev libairspyhf-dev libairspy-dev libiio-dev libad9361-dev librtaudio-dev libhackrf-dev librtlsdr-dev
|
||||
|
||||
git clone https://github.com/AlexandreRouma/SDRPlusPlus
|
||||
|
||||
cd SDRPlusPlus
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make -j2
|
||||
|
||||
cd ..
|
||||
sh make_debian_package.sh ./build
|
Loading…
Reference in New Issue
Block a user