1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-08-19 14:16:09 +00:00
gnss-sdr/.gitlab-ci.yml

48 lines
1.5 KiB
YAML
Raw Normal View History

2018-02-09 15:50:47 +00:00
# Is performed before the scripts in the stages step
before_script:
- source /etc/profile
# Defines stages which are to be executed
stages:
- build
- test
# Stage "build"
run-build:
stage: build
script:
- apt-get update
2018-02-09 17:21:23 +00:00
- apt-get install -y --no-install-recommends build-essential cmake git libboost-dev libboost-date-time-dev libboost-system-dev libboost-filesystem-dev libboost-thread-dev libboost-chrono-dev libboost-serialization-dev liblog4cpp5-dev gnuradio-dev libblas-dev liblapack-dev libarmadillo-dev libgflags-dev libgoogle-glog-dev libgnutls-openssl-dev python-mako python-six libhdf5-dev libgtest-dev
2018-02-09 15:50:47 +00:00
- cd build
2018-02-09 16:10:14 +00:00
- cmake ..
2018-02-09 15:50:47 +00:00
- make -j2
- make install
# This stage is only executed for new tags
# only:
# - tags
# The files which are to be made available in GitLab
artifacts:
paths:
- install/*
# Stage "test"
run-test:
stage: test
script:
- apt-get update
2018-02-09 17:21:23 +00:00
- apt-get install -y --no-install-recommends build-essential cmake git libboost-dev libboost-date-time-dev libboost-system-dev libboost-filesystem-dev libboost-thread-dev libboost-chrono-dev libboost-serialization-dev liblog4cpp5-dev gnuradio-dev libblas-dev liblapack-dev libarmadillo-dev libgflags-dev libgoogle-glog-dev libgnutls-openssl-dev python-mako python-six libhdf5-dev libgtest-dev
2018-02-09 15:50:47 +00:00
- mkdir build-test
- cd build-test
- cmake ..
- make -j2
- make check
- ../install/run_tests --gtest_output=xml
- mv *.xml ../build/
- cd ..
- rm -rf build-test
artifacts:
paths:
- build/*.xml