Skip to content
Snippets Groups Projects
Commit 2ee67325 authored by Konstantin Pavlov's avatar Konstantin Pavlov
Browse files

Merge branch 'ci' into 'master'

CI: added debian, macos, win32 and win64 build jobs.

See merge request !2
parents 31670b2d 35fc75e6
No related branches found
No related tags found
1 merge request!2CI: added debian, macos, win32 and win64 build jobs.
Pipeline #3274 passed with stage
in 2 minutes and 16 seconds
stages:
- build
build-debian:
image: registry.videolan.org:5000/vlc-debian-unstable:20181128113529
stage: build
tags:
- debian
- amd64
script:
- ./bootstrap
- mkdir build
- cd build
- ../configure
- make -j $(getconf _NPROCESSORS_ONLN)
build-macos:
stage: build
tags:
- macos
script:
- ./bootstrap
- mkdir build
- cd build
- ../configure
- make -j $(getconf _NPROCESSORS_ONLN)
build-win64:
image: registry.videolan.org:5000/vlc-debian-win64:20181107154313
stage: build
tags:
- debian
- amd64
- win64
script:
- ./bootstrap
- mkdir build
- cd build
- ../configure --host=x86_64-w64-mingw32
- make -j $(getconf _NPROCESSORS_ONLN)
build-win32:
image: registry.videolan.org:5000/vlc-debian-win32:20181107151708
stage: build
tags:
- debian
- amd64
- win32
script:
- ./bootstrap
- mkdir build
- cd build
- ../configure --host=i686-w64-mingw32
- make -j $(getconf _NPROCESSORS_ONLN)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment