Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libvlcjni
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Steve Lhomme
libvlcjni
Commits
bd0cd1ab
Commit
bd0cd1ab
authored
6 months ago
by
Steve Lhomme
Browse files
Options
Downloads
Patches
Plain Diff
CI: don't use prebuilt if the buildsystem scripts were modified
parent
6eb83177
Loading
Loading
Loading
Pipeline
#517877
passed with stage
in 8 minutes and 56 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
buildsystem/get-contrib-rebuild.sh
+34
-0
34 additions, 0 deletions
buildsystem/get-contrib-rebuild.sh
buildsystem/gitlab/.gitlab-ci.yml
+5
-3
5 additions, 3 deletions
buildsystem/gitlab/.gitlab-ci.yml
with
39 additions
and
3 deletions
buildsystem/get-contrib-rebuild.sh
0 → 100755
+
34
−
0
View file @
bd0cd1ab
#!/usr/bin/env bash
# Returns 0 if the prebuilt contrib can be used
set
-e
# Print error message and terminate script with status 1
# Arguments:
# Message to print
abort_err
()
{
echo
"ERROR:
$1
"
>
&2
exit
1
}
command
-v
"git"
>
/dev/null 2>&1
||
abort_err
"Git was not found!"
# VLC source root directory
LIBVLCJNI_SRC_ROOT_DIR
=
$(
git rev-parse
--show-toplevel
)
[
-n
"
${
LIBVLCJNI_SRC_ROOT_DIR
}
"
]
||
abort_err
"This script must be run in the libvlcjni Git repo and git must be available"
[
-f
"
${
LIBVLCJNI_SRC_ROOT_DIR
}
/libvlc/jni/Android.mk"
]
||
abort_err
"This script must be run in the libvlcjni Git repository"
REFERENCE_BRANCH
=
"
$1
"
[
-n
"
${
REFERENCE_BRANCH
}
"
]
||
abort_err
"Missing reference branch argument (origin/master ?)"
# Check if files were changed in the buildsystem
ALL_CHANGES
=
$(
git diff
--name-only
"
${
REFERENCE_BRANCH
}
"
)
BUILDSYSTEM_CHANGED
=
$(
echo
"
${
ALL_CHANGES
}
"
|
grep
^buildsystem/
)
if
[
-n
"
${
BUILDSYSTEM_CHANGED
}
"
]
;
then
# The buildsystem has been modified, we need to rebuild contribs
exit
1
fi
exit
0
This diff is collapsed.
Click to expand it.
buildsystem/gitlab/.gitlab-ci.yml
+
5
−
3
View file @
bd0cd1ab
...
...
@@ -21,9 +21,11 @@ stages:
script
:
|
rm -rf vlc
./buildsystem/get-vlc.sh
export VLC_CONTRIB_SHA="$(cd vlc && extras/ci/get-contrib-sha.sh android-${ARCH})"
export VLC_PREBUILT_CONTRIBS_URL="https://artifacts.videolan.org/vlc/android-${ARCH}/vlc-contrib-${TRIPLET}-${VLC_CONTRIB_SHA}.tar.bz2"
if vlc/extras/ci/check-url.sh "$VLC_PREBUILT_CONTRIBS_URL"; then CONTRIB_FLAGS="--with-prebuilt-contribs"; fi
if [ ! buildsystem/get-contrib-rebuild.sh "${CI_DEFAULT_BRANCH}" ]; then
export VLC_CONTRIB_SHA="$(cd vlc && extras/ci/get-contrib-sha.sh android-${ARCH})"
export VLC_PREBUILT_CONTRIBS_URL="https://artifacts.videolan.org/vlc/android-${ARCH}/vlc-contrib-${TRIPLET}-${VLC_CONTRIB_SHA}.tar.bz2"
if vlc/extras/ci/check-url.sh "$VLC_PREBUILT_CONTRIBS_URL"; then CONTRIB_FLAGS="--with-prebuilt-contribs"; fi
fi
./buildsystem/compile-libvlc.sh -a ${ARCH} $CONTRIB_FLAGS
rules
:
# Explicitely refuse to build anything that would also trigger
...
...
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