Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vivien F
VLC
Commits
00a01eb2
Commit
00a01eb2
authored
3 years ago
by
Hugo Beauzée-Luyssen
Browse files
Options
Downloads
Patches
Plain Diff
CI: Add Windows release jobs
parent
c3e2ac60
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
extras/ci/gitlab-ci.yml
+39
-0
39 additions, 0 deletions
extras/ci/gitlab-ci.yml
with
39 additions
and
0 deletions
extras/ci/gitlab-ci.yml
+
39
−
0
View file @
00a01eb2
...
...
@@ -152,6 +152,45 @@ nightly-win64:
name
:
$VLC_WIN64_IMAGE
variables
:
*variables-win64
.release-win-common
:
# We don't use any of the .win-common template so just use .docker-template
extends
:
.docker-template
only
:
-
tags
tags
:
-
release
-
amd64
before_script
:
# We usually can use $CI_COMMIT_TAG, but this lets us do fixup tags
# such as 3.0.123-1
# This is done in a before_script because we want to bypass the
# prebuilt contrib logic but can't have an empty before_script
-
export RELEASE_TAG=$(echo $CI_COMMIT_TAG | cut -f 1 -d -)
script
:
-
export PATH=/opt/breakpad/bin:$PATH
-
./extras/package/win32/build.sh -r -l -i u -a $HOST_ARCH -b https://win.crashes.videolan.org
-
>
./extras/breakpad/symb_upload.py
--upload-url $CRASH_DRAGON_SUBMIT_URL
-p win --version $RELEASE_TAG
--prod VLC --log INFO
--strip-path $CI_PROJECT_DIR $CI_PROJECT_DIR/$SHORTARCH/symbols-$RELEASE_TAG
artifacts
:
paths
:
-
$CI_PROJECT_DIR/$SHORTARCH/vlc-*release.7z
release-win32
:
extends
:
.release-win-common
image
:
name
:
$VLC_WIN32_IMAGE
variables
:
*variables-win32
release-win64
:
extends
:
.release-win-common
image
:
name
:
$VLC_WIN64_IMAGE
variables
:
*variables-win64
#
# Debian
#
...
...
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