Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
W
Windbot-408
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
神之吹息
Windbot-408
Commits
ede713c5
Commit
ede713c5
authored
Jun 11, 2021
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci
parent
f2d7219b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
66 additions
and
0 deletions
+66
-0
.gitlab-ci.yml
.gitlab-ci.yml
+66
-0
No files found.
.gitlab-ci.yml
0 → 100644
View file @
ede713c5
stages
:
-
build
-
deploy
variables
:
GIT_DEPTH
:
"
1"
CONTAINER_TEST_IMAGE
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
CONTAINER_RELEASE_IMAGE
:
$CI_REGISTRY_IMAGE:latest
build
:
stage
:
build
dependencies
:
[]
tags
:
-
linux
image
:
mono
script
:
-
sed -i '/download.mono-project.com/d' /etc/apt/sources.list /etc/apt/sources.list.d/*
-
apt update && apt -y install p7zip-full tar
-
msbuild /p:Configuration=Release /p:TargetFrameworkVersion=v4.6
-
mv -f bin/Release WindBot
#- rm -rf WindBot/WindBot.exe.config
-
mv -f BotWrapper/bin/Release/Bot.exe .
-
mv -f BotWrapper/bin/Release/bot.conf .
-
mv -f BotWrapper/BotWrapper.sh ./bot
-
chmod +x ./bot
-
mkdir dist
-
7z a -mx9 dist/WindBot.7z WindBot Bot.exe bot.conf
-
mv WindBot windbot
-
tar zcvf dist/windbot.tar.gz windbot bot.conf bot
artifacts
:
paths
:
-
dist/
docker
:
stage
:
build
tags
:
-
docker
script
:
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-
docker build --pull --no-cache -t $CONTAINER_TEST_IMAGE .
-
docker push $CONTAINER_TEST_IMAGE
upload_to_minio
:
stage
:
deploy
dependencies
:
-
build
tags
:
-
linux
image
:
python
script
:
-
pip install -U -i https://mirrors.aliyun.com/pypi/simple/ awscli
-
aws s3 --endpoint=https://minio.mycard.moe:9000 sync dist/ s3://mycard/windbot-mc
only
:
-
master
deploy_docker
:
stage
:
deploy
tags
:
-
docker
script
:
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-
docker pull $CONTAINER_TEST_IMAGE
-
docker tag $CONTAINER_TEST_IMAGE $CONTAINER_RELEASE_IMAGE
-
docker push $CONTAINER_RELEASE_IMAGE
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