Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libdvbpsi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
libdvbpsi
Commits
8d4c8b38
Commit
8d4c8b38
authored
Nov 30, 2018
by
Konstantin Pavlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI: added debian, macos, win32 and win64 build jobs.
parent
5700ed2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
0 deletions
+57
-0
.gitlab-ci.yml
.gitlab-ci.yml
+57
-0
No files found.
.gitlab-ci.yml
0 → 100644
View file @
8d4c8b38
stages
:
-
build
variables
:
GIT_SUBMODULE_STRATEGY
:
normal
build-debian
:
image
:
registry.videolan.org:5000/vlc-debian-unstable:20181128113529
stage
:
build
tags
:
-
debian
-
amd64
script
:
-
autoreconf -fisv
-
mkdir build
-
cd build
-
../configure
-
make -j $(getconf _NPROCESSORS_ONLN)
build-macos
:
stage
:
build
tags
:
-
macos
script
:
-
autoreconf -fisv
-
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
:
-
autoreconf -fisv
-
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
:
-
autoreconf -fisv
-
mkdir build
-
cd build
-
../configure --host=i686-w64-mingw32
-
make -j $(getconf _NPROCESSORS_ONLN)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment