Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Alchemy
Third Party
3p-ogg_vorbis
Commits
f95488b0
Commit
f95488b0
authored
Sep 11, 2020
by
Rye Mutt
🍞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CI templates
parent
612e93e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
0 deletions
+63
-0
.gitlab-ci.yml
.gitlab-ci.yml
+49
-0
Pipfile
Pipfile
+14
-0
No files found.
.gitlab-ci.yml
0 → 100644
View file @
f95488b0
stages
:
-
build
-
deploy
variables
:
AUTOBUILD_PACKAGE_DIR
:
ogg-vorbis
AUTOBUILD_PACKAGE_NAME
:
ogg_vorbis
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
Pipfile
0 → 100644
View file @
f95488b0
[[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"
Write
Preview
Markdown
is supported
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