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
a3dcbffc
Commit
a3dcbffc
authored
Jun 13, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update .gitlab-ci.yml
parent
fb40b208
Pipeline
#37566
canceled with stages
in 21 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
1 deletion
+28
-1
.gitlab-ci.yml
.gitlab-ci.yml
+28
-1
No files found.
.gitlab-ci.yml
View file @
a3dcbffc
...
@@ -142,8 +142,9 @@ deploy-branch-combined:
...
@@ -142,8 +142,9 @@ deploy-branch-combined:
artifacts
:
artifacts
:
paths
:
paths
:
-
dist
-
dist
script
:
before_
script
:
-
mkdir -p dist
-
mkdir -p dist
script
:
-
cp /usr/bin/premake5 .
-
cp /usr/bin/premake5 .
-
chmod +x premake5
-
chmod +x premake5
-
tar -zcvf dist/premake-$PREMAKE_VERSION-linux-$ARCH.tar.gz premake5
-
tar -zcvf dist/premake-$PREMAKE_VERSION-linux-$ARCH.tar.gz premake5
...
@@ -172,11 +173,37 @@ pack_premake5_arm:
...
@@ -172,11 +173,37 @@ pack_premake5_arm:
variables
:
variables
:
ARCH
:
arm64
ARCH
:
arm64
copy_premake5_others
:
extends
:
.pack_premake5
tags
:
-
linux
script
:
|
BASE_URL="https://github.com/premake/premake-core/releases/download/v$PREMAKE_VERSION"
PACKAGES=(
premake-$PREMAKE_VERSION-windows.zip
premake-$PREMAKE_VERSION-macosx.tar.gz
premake-$PREMAKE_VERSION-src.zip
)
cd dist
for FILE in "${PACKAGES[@]}"; do
echo "Downloading $FILE ..."
wget -O "$FILE" "$BASE_URL/$FILE"
LATEST_FILE="${FILE/$PREMAKE_VERSION/latest}"
echo "Copying to $LATEST_FILE ..."
cp "$FILE" "$LATEST_FILE"
done
cd ..
upload_to_minio
:
upload_to_minio
:
stage
:
deploy
stage
:
deploy
dependencies
:
dependencies
:
-
pack_premake5_x86
-
pack_premake5_x86
-
pack_premake5_arm
-
pack_premake5_arm
-
copy_premake5_others
tags
:
tags
:
-
linux
-
linux
script
:
script
:
...
...
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