Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
docker-ygopro-builder
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
docker-ygopro-builder
Commits
52c1c4aa
Commit
52c1c4aa
authored
Jun 13, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update .gitlab-ci.yml
parent
a7d21965
Pipeline
#37560
failed with stages
in 3 minutes and 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
0 deletions
+47
-0
.gitlab-ci.yml
.gitlab-ci.yml
+47
-0
No files found.
.gitlab-ci.yml
View file @
52c1c4aa
stages
:
-
build
-
pack
-
deploy
variables
:
...
...
@@ -12,6 +13,7 @@ before_script:
.build-image
:
stage
:
build
dependencies
:
[]
script
:
-
|
docker build --pull -t "$TARGET_IMAGE" \
...
...
@@ -66,6 +68,7 @@ build-debian12-arm:
.deploy-manifest
:
stage
:
deploy
dependencies
:
[]
tags
:
-
docker
script
:
...
...
@@ -126,3 +129,47 @@ deploy-branch-combined:
variables
:
BASE_TAG
:
debian11
# use debian11 images for multi-arch fallback
TARGET_IMAGE
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
#########################
# Pack premake5
#########################
.pack_premake5
:
stage
:
pack
dependencies
:
[]
artifacts
:
paths
:
-
dist
script
:
-
mkdir -p dist
-
cp /usr/bin/premake5 .
-
chmod +x premake5
-
tar -zcvf dist/premake5-built-$ARCH.tar.gz premake5
pack_premake5_x86
:
extends
:
.pack_premake5
tags
:
-
linux
image
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG-debian11-x86
variables
:
ARCH
:
amd64
pack_premake5_arm
:
extends
:
.pack_premake5
tags
:
-
linux-arm
image
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG-debian11-arm
variables
:
ARCH
:
arm64
upload_to_minio
:
stage
:
deploy
dependencies
:
-
pack_premake5_x86
-
pack_premake5_arm
tags
:
-
linux
script
:
-
aws s3 --endpoint=https://minio.moenext.com:9000 sync dist/ s3://mycard/premake5-built
only
:
-
master
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