1 Star 0 Fork 2

星期八/demo-2048_cicd

forked from 橙子/demo-2048 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.gitlab-ci.yml 940 Bytes
一键复制 编辑 原始数据 按行查看 历史
星期八 提交于 2024-05-25 02:17 . update .gitlab-ci.yml.
image:
name: maven:3.6-jdk-8-2
stages:
- build
- push
- deploy
build:
stage: build
script:
- ls
- id
- ls ~/.m2/repository
- pwd
- mvn clean package -DskipTests
- ls
- ls ~/.m2/repository
- pwd
cache:
paths:
- ~/.m2/repository
artifacts:
paths:
- target/
push:
stage: push
image: docker:19.03.5-dind
script:
- pwd
- ls
- id
- pwd
- docker version
- docker build -t demo-2048:latest -f Dockerfiles/Dockerfile .
- pwd
- ls ~/.m2/repository
- ls
deploy:
stage: test
image: kubectl:latest
script:
- pwd
- kubectl apply -f ./template/demo-2048.yaml
- pwd
deploy:
stage: deploy
image: docker:19.03.5-dind
script:
- ls
- id
- pwd
- pwd
- docker run -d --name demo-2048-${CI_JOB_ID} demo-2048
- ls
- ls ~/.m2/repository
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yancongcongai/demo-2048_cicd.git
git@gitee.com:yancongcongai/demo-2048_cicd.git
yancongcongai
demo-2048_cicd
demo-2048_cicd
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891