Commit 2ae683a4 authored by mercury233's avatar mercury233

Merge branch 'master' of git.mycard.moe:mycard/ImgGen

parents 79dcb1b0 6a23c4cf
Pipeline #9038 passed with stages
in 5 minutes and 25 seconds
...@@ -7,23 +7,23 @@ variables: ...@@ -7,23 +7,23 @@ variables:
CONTAINER_TEST_IMAGE: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG CONTAINER_TEST_IMAGE: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
CONTAINER_RELEASE_IMAGE: $CI_REGISTRY_IMAGE:latest CONTAINER_RELEASE_IMAGE: $CI_REGISTRY_IMAGE:latest
build: #build:
stage: build # stage: build
dependencies: [] # dependencies: []
tags: # tags:
- linux # - linux
image: mono # image: mono
script: # script:
- sed -i '/download.mono-project.com/d' /etc/apt/sources.list /etc/apt/sources.list.d/* # - sed -i '/download.mono-project.com/d' /etc/apt/sources.list /etc/apt/sources.list.d/*
- apt update && apt -y install p7zip-full tar # - apt update && apt -y install p7zip-full tar
- xbuild /p:Configuration=Release /p:TargetFrameworkVersion=v4.6 # - xbuild /p:Configuration=Release /p:TargetFrameworkVersion=v2.0
- mkdir dist # - mkdir dist
- cd bin/Release # - cd bin/Release
- 7z a -mx9 ../../dist/ImgGen.7z * # - 7z a -mx9 ../../dist/ImgGen.7z *
- cd ../.. # - cd ../..
artifacts: # artifacts:
paths: # paths:
- dist/ # - dist/
docker: docker:
stage: build stage: build
...@@ -34,18 +34,18 @@ docker: ...@@ -34,18 +34,18 @@ docker:
- docker build --pull --no-cache -t $CONTAINER_TEST_IMAGE . - docker build --pull --no-cache -t $CONTAINER_TEST_IMAGE .
- docker push $CONTAINER_TEST_IMAGE - docker push $CONTAINER_TEST_IMAGE
upload_to_minio: #upload_to_minio:
stage: deploy # stage: deploy
dependencies: # dependencies:
- build # - build
tags: # tags:
- linux # - linux
image: python # image: python
script: # script:
- pip install -U -i https://mirrors.aliyun.com/pypi/simple/ awscli # - pip install -U -i https://mirrors.aliyun.com/pypi/simple/ awscli
- aws s3 --endpoint=https://minio.mycard.moe:9000 sync dist/ s3://mycard/ImgGen # - aws s3 --endpoint=https://minio.mycard.moe:9000 sync dist/ s3://mycard/ImgGen
only: # only:
- master # - master
deploy_docker: deploy_docker:
stage: deploy stage: deploy
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment