Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libdca
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
libdca
Merge requests
!2
CI: added debian, macos, win32 and win64 build jobs.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
CI: added debian, macos, win32 and win64 build jobs.
thresh/libdca:ci
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Konstantin Pavlov
requested to merge
thresh/libdca:ci
into
master
6 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
35fc75e6
1 commit,
6 years ago
1 file
+
54
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
0 → 100644
+
54
−
0
Options
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)
Loading