Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
vlc.js
Manage
Activity
Members
Labels
Plan
Issues
43
Issue boards
Milestones
Code
Merge requests
8
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
Jean-Baptiste Kempf
vlc.js
Merge requests
!5
fix TESTED_HASH to manage vlc updates
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix TESTED_HASH to manage vlc updates
b1ue/vlc.js:update-build7
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Mehdi Sabwat
requested to merge
b1ue/vlc.js:update-build7
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Previous merge request has the wrong hash, and a patch that was merged upstream.
Edited
4 years ago
by
Jean-Baptiste Kempf
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
58a76be8
1 commit,
4 years ago
1 file
+
6
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
compile.sh
+
6
−
2
Options
@@ -26,11 +26,15 @@ if [ ! -d emsdk ]; then
fi
cd
$WORK_DIR
TESTED_HASH
=
"7bad2a86"
# Go go go vlc
if
[
!
-d
vlc
]
;
then
diagnostic
"VLC source not found, cloning"
git clone http://git.videolan.org/git/vlc.git vlc
git clone http://git.videolan.org/git/vlc.git vlc
||
checkfail
"VLC source: git clone failed"
cd
vlc
diagnostic
"VLC source: resetting to the TESTED_HASH commit (
${
TESTED_HASH
}
)"
git reset
--hard
${
TESTED_HASH
}
||
checkfail
"VLC source: TESTED_HASH
${
TESTED_HASH
}
not found"
cd
..
checkfail
"vlc source: git clone failed"
fi
Loading