Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dvblast
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
dvblast
Commits
4270dcae
Commit
4270dcae
authored
4 years ago
by
Konstantin Pavlov
Browse files
Options
Downloads
Patches
Plain Diff
CI: Simplify and move to contemporary builders
parent
1b583d82
No related branches found
Branches containing commit
No related tags found
1 merge request
!2
CI: Simplify and move to contemporary builders
Pipeline
#55592
passed with stage
Stage:
in 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+25
-24
25 additions, 24 deletions
.gitlab-ci.yml
with
25 additions
and
24 deletions
.gitlab-ci.yml
+
25
−
24
View file @
4270dcae
stages
:
-
build
build-debian
:
image
:
registry.videolan.org:5000/vlc-debian-unstable:20181128113529
variables
:
LIBEV_VERSION
:
"
4.33"
LIBEV_SHA256SUM
:
"
507eb7b8d1015fbec5b935f34ebed15bf346bed04a11ab82b8eee848c4205aea"
.build-template
:
stage
:
build
script
:
|
curl -O http://dist.schmorp.de/libev/Attic/libev-${LIBEV_VERSION}.tar.gz
echo "$LIBEV_SHA256SUM libev-${LIBEV_VERSION}.tar.gz" | shasum -a 256 -c -
tar xf libev-${LIBEV_VERSION}.tar.gz
cd libev-${LIBEV_VERSION}
./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-debian
:
image
:
registry.videolan.org/vlc-debian-unstable:20200529132440
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)
extends
:
-
.build-template
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)
-
amd64
-
catalina
extends
:
-
.build-template
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment