Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
3
3p-libjpeg-turbo
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Third Party
3p-libjpeg-turbo
Commits
2dd07bdc
Commit
2dd07bdc
authored
4 years ago
by
Rye Mutt
Browse files
Options
Downloads
Patches
Plain Diff
Add CI skeleton
parent
09c751b8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#336
passed
4 years ago
Stage: build
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+49
-0
49 additions, 0 deletions
.gitlab-ci.yml
Pipfile
+14
-0
14 additions, 0 deletions
Pipfile
with
63 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
49
−
0
View file @
2dd07bdc
stages
:
-
build
-
deploy
variables
:
AUTOBUILD_PACKAGE_DIR
:
libjpeg-turbo
AUTOBUILD_PACKAGE_NAME
:
libjpeg_turbo
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
deploy:nexus
:
stage
:
deploy
tags
:
-
autobuild
-
windows
script
:
-
$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}"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Pipfile
0 → 100644
+
14
−
0
View file @
2dd07bdc
[[source]]
url
=
"https://pypi.org/simple"
verify_ssl
=
true
name
=
"pypi"
[dev-packages]
[packages]
llbase
=
"*"
certifi
=
"*"
autobuild
=
{
git
=
"https://git.alchemyviewer.org/alchemy/autobuild.git"
}
[requires]
python_version
=
"2.7"
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