GNU Radio blocks for receiving/transmitting GSM
https://osmocom.org/projects/gr-gsm/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
502 B
19 lines
502 B
sudo: required
|
|
dist: bionic
|
|
|
|
language: ruby
|
|
|
|
env:
|
|
- DOCKERFILE=tests/dockerfiles/Ubuntu_20_04.docker IMGNAME=ubuntu_20_04
|
|
- DOCKERFILE=tests/dockerfiles/Debian_testing.docker IMGNAME=debian_testing
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- cat $DOCKERFILE > Dockerfile ; docker build -t $IMGNAME .
|
|
|
|
script:
|
|
- docker run -it --rm $IMGNAME sh -c 'cd /src/build;make test'
|
|
- docker run -it --rm $IMGNAME /src/tests/scripts/decode.sh
|
|
- docker run -it --rm $IMGNAME /src/tests/scripts/decrypt.sh
|
|
|