[dvblast-devel] [Git][videolan/dvblast][master] CI: Added debian and macos build jobs.
Christophe Massiot
gitlab at videolan.org
Thu Dec 6 16:23:55 CET 2018
Christophe Massiot pushed to branch master at VideoLAN / dvblast
Commits:
6a4b9c18 by Konstantin Pavlov at 2018-11-30T18:06:21Z
CI: Added debian and macos build jobs.
- - - - -
1 changed file:
- + .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -0,0 +1,34 @@
+stages:
+ - build
+
+build-debian:
+ image: registry.videolan.org:5000/vlc-debian-unstable:20181128113529
+ stage: build
+ tags:
+ - debian
+ - amd64
+ script:
+ - wget http://dist.schmorp.de/libev/Attic/libev-4.24.tar.gz
+ - tar xf libev-4.24.tar.gz
+ - cd libev-4.24
+ - ./configure --prefix=`pwd`/../deps/
+ - make -j $(getconf _NPROCESSORS_ONLN)
+ - make install
+ - cd ..
+ - git clone https://code.videolan.org/videolan/bitstream
+ - CFLAGS="-Ideps/include -I./" LDFLAGS="-Ldeps/lib" make -j $(getconf _NPROCESSORS_ONLN)
+
+build-macos:
+ stage: build
+ tags:
+ - macos
+ script:
+ - curl -sS -O http://dist.schmorp.de/libev/Attic/libev-4.24.tar.gz
+ - tar xf libev-4.24.tar.gz
+ - cd libev-4.24
+ - ./configure --prefix=`pwd`/../deps/
+ - make -j $(getconf _NPROCESSORS_ONLN)
+ - make install
+ - cd ..
+ - git clone https://code.videolan.org/videolan/bitstream
+ - CFLAGS="-Ideps/include -I./" LDFLAGS="-Ldeps/lib" make -j $(getconf _NPROCESSORS_ONLN)
View it on GitLab: https://code.videolan.org/videolan/dvblast/commit/6a4b9c187e531772e33fea665cbf18f1353b5862
--
View it on GitLab: https://code.videolan.org/videolan/dvblast/commit/6a4b9c187e531772e33fea665cbf18f1353b5862
You're receiving this email because of your account on code.videolan.org.
More information about the dvblast-devel
mailing list