1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-10-05 18:30:51 +00:00

Add OpenSUSE

This commit is contained in:
Carles Fernandez 2018-03-10 11:58:45 +01:00
parent 29f491dca5
commit 681158e199

View File

@ -217,6 +217,40 @@ fedora-rawhide:
allow_failure: true
opensuse42.3:
image: opensuse:42.3
stage: build
before_script:
- source ~/.bash_profile
script:
- zypper -n up
- zypper -n install cmake git gcc-c++ boost-devel log4cpp-devel gnuradio-devel armadillo-devel libtool automake hdf5-devel openssl-devel python-Mako python-six
- cd build
- cmake -DENABLE_PACKAGING=ON ..
- NPROC=$(grep -c ^processor /proc/cpuinfo)
- make -j$(($NPROC+1))
- make check
- make install
allow_failure: true
opensuse-tumbleweed:
image: opensuse:tumbleweed
stage: build
before_script:
- source ~/.bash_profile
script:
- zypper -n up
- zypper -n install cmake git gcc-c++ boost-devel libboost_system-devel libboost_filesystem-devel libboost_date_time-devel libboost_thread-devel libboost_chrono-devel libboost_serialization-devel log4cpp-devel gtest gnuradio-devel armadillo-devel libtool automake hdf5-devel openssl-devel python-Mako python-six
- cd build
- cmake ..
- NPROC=$(grep -c ^processor /proc/cpuinfo)
- make -j$(($NPROC+1))
- make check
- make install
allow_failure: true
ubuntu14.04:
image: ubuntu:trusty
stage: build