Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
R
railgun-routing-client
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
Railgun
railgun-routing-client
Commits
e5eb99e2
Commit
e5eb99e2
authored
Dec 17, 2025
by
nanamicat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci
parent
b4ca6a52
Pipeline
#42000
failed with stages
in 1 minute and 46 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
105 additions
and
2 deletions
+105
-2
.dockerignore
.dockerignore
+20
-0
.gitignore
.gitignore
+2
-2
.gitlab-ci.yml
.gitlab-ci.yml
+65
-0
Dockerfile
Dockerfile
+18
-0
README.md
README.md
+0
-0
No files found.
.dockerignore
0 → 100644
View file @
e5eb99e2
# Rust build artifacts
target/
# Git
.git/
.gitignore
# IDE
.idea/
# CI/CD
.gitlab-ci.yml
# Docker
Dockerfile
.dockerignore
# Documentation
README.md
rustfmt.toml
\ No newline at end of file
.gitignore
View file @
e5eb99e2
/.idea/
/.idea/
/target/
/import/
/import/
/target/
\ No newline at end of file
\ No newline at end of file
.gitlab-ci.yml
0 → 100644
View file @
e5eb99e2
stages
:
-
build
-
combine
-
deploy
variables
:
GIT_DEPTH
:
"
1"
CONTAINER_TEST_IMAGE
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
CONTAINER_TEST_ARM_IMAGE
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG-arm
CONTAINER_TEST_X86_IMAGE
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG-x86
CONTAINER_RELEASE_IMAGE
:
$CI_REGISTRY_IMAGE:latest
before_script
:
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
build-x86
:
stage
:
build
tags
:
-
docker
script
:
-
TARGET_IMAGE=$CONTAINER_TEST_X86_IMAGE
-
docker build --pull -t $TARGET_IMAGE .
-
docker push $TARGET_IMAGE
build-arm
:
stage
:
build
tags
:
-
docker-arm
script
:
-
TARGET_IMAGE=$CONTAINER_TEST_ARM_IMAGE
-
docker build --pull -t $TARGET_IMAGE .
-
docker push $TARGET_IMAGE
combine
:
stage
:
combine
tags
:
-
docker
script
:
-
TARGET_IMAGE=$CONTAINER_TEST_IMAGE
-
SOURCE_IMAGE_2=$CONTAINER_TEST_ARM_IMAGE
-
SOURCE_IMAGE_1=$CONTAINER_TEST_X86_IMAGE
-
docker pull $SOURCE_IMAGE_1
-
docker pull $SOURCE_IMAGE_2
-
docker manifest create $TARGET_IMAGE --amend $SOURCE_IMAGE_1 --amend
$SOURCE_IMAGE_2
-
docker manifest push $TARGET_IMAGE
deploy_latest
:
stage
:
deploy
tags
:
-
docker
script
:
-
TARGET_IMAGE=$CONTAINER_RELEASE_IMAGE
-
SOURCE_IMAGE=$CONTAINER_TEST_IMAGE
-
docker pull $SOURCE_IMAGE
-
docker tag $SOURCE_IMAGE $TARGET_IMAGE
-
docker push $TARGET_IMAGE
only
:
-
master
deploy_tag
:
stage
:
deploy
tags
:
-
docker
script
:
-
TARGET_IMAGE=$CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
-
SOURCE_IMAGE=$CONTAINER_TEST_IMAGE
-
docker pull $SOURCE_IMAGE
-
docker tag $SOURCE_IMAGE $TARGET_IMAGE
-
docker push $TARGET_IMAGE
only
:
-
tags
Dockerfile
0 → 100644
View file @
e5eb99e2
FROM
rust:1.92-alpine3.23 AS chef
RUN
cargo
install
cargo-chef
WORKDIR
app
FROM
chef AS planner
COPY
. .
RUN
cargo chef prepare
--recipe-path
recipe.json
FROM
chef AS builder
COPY
--from=planner /app/recipe.json recipe.json
RUN
cargo chef cook
--release
--recipe-path
recipe.json
COPY
. .
RUN
cargo build
--release
FROM
alpine:3.23
WORKDIR
app
COPY
--from=builder /app/target/release/railgun-routing-server /usr/local/bin
ENTRYPOINT
["/usr/local/bin/railgun-routing-server"]
\ No newline at end of file
README.md
0 → 100644
View file @
e5eb99e2
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