Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alchemy
Third Party
3p-libwebp
Commits
771d58c2
Commit
771d58c2
authored
Oct 26, 2020
by
Rye Mutt
🍞
Browse files
Change to templated CI config
parent
e8d14d2d
Pipeline
#545
passed with stages
in 1 minute and 30 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
771d58c2
stages
:
-
build
-
deploy
variables
:
AUTOBUILD_PACKAGE_DIR
:
libwebp
AUTOBUILD_PACKAGE_NAME
:
libwebp
AUTOBUILD_BUILD_ID
:
$CI_PIPELINE_ID
build:windows:
stage
:
build
tags
:
-
autobuild
-
windows
before_script
:
-
pipenv install
script
:
-
pipenv run autobuild install -A32
-
pipenv run autobuild build -A32
-
pipenv run autobuild package -A32
artifacts
:
paths
:
-
${env:AUTOBUILD_PACKAGE_NAME}-*windows*.tar.bz2
build:windows64:
stage
:
build
tags
:
-
autobuild
-
windows
before_script
:
-
pipenv install
script
:
-
pipenv run autobuild install -A64
-
pipenv run autobuild build -A64
-
pipenv run autobuild package -A64
artifacts
:
paths
:
-
${env:AUTOBUILD_PACKAGE_NAME}-*windows64*.tar.bz2
build:linux64:
stage
:
build
image
:
r.alchemyviewer.org/alchemy/infrastructure/debian-build-image:latest
tags
:
-
linux
-
docker
script
:
-
autobuild install -A64
-
autobuild build -A64
-
autobuild package -A64
artifacts
:
paths
:
-
$AUTOBUILD_PACKAGE_NAME-*linux64*.tar.bz2
deploy:nexus:
stage
:
deploy
tags
:
-
autobuild
-
windows
when
:
manual
script
:
-
$FileNameLnx64 = Get-ChildItem -Path . -Name -Include ${env:AUTOBUILD_PACKAGE_NAME}-*-linux64-${env:AUTOBUILD_BUILD_ID}*.tar.bz2
-
curl.exe -v --user "${env:AUTOBUILD_HTTP_USER}:${env:AUTOBUILD_HTTP_PASS}" --upload-file .\$FileNameLnx64 "https://pkg.alchemyviewer.org/repository/autobuild-external/${env:AUTOBUILD_PACKAGE_DIR}/linux64/${FileNameLnx64}"
-
$FileNameWin32 = Get-ChildItem -Path . -Name -Include ${env:AUTOBUILD_PACKAGE_NAME}-*-windows-${env:AUTOBUILD_BUILD_ID}*.tar.bz2
-
curl.exe -v --user "${env:AUTOBUILD_HTTP_USER}:${env:AUTOBUILD_HTTP_PASS}" --upload-file .\$FileNameWin32 "https://pkg.alchemyviewer.org/repository/autobuild-external/${env:AUTOBUILD_PACKAGE_DIR}/windows/${FileNameWin32}"
-
$FileNameWin64 = Get-ChildItem -Path . -Name -Include ${env:AUTOBUILD_PACKAGE_NAME}-*-windows64-${env:AUTOBUILD_BUILD_ID}*.tar.bz2
-
curl.exe -v --user "${env:AUTOBUILD_HTTP_USER}:${env:AUTOBUILD_HTTP_PASS}" --upload-file .\$FileNameWin64 "https://pkg.alchemyviewer.org/repository/autobuild-external/${env:AUTOBUILD_PACKAGE_DIR}/windows64/${FileNameWin64}"
include
:
-
project
:
'
alchemy/infrastructure/gitlab-ci-config'
file
:
'
3p-library.yml'
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment