『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

栏目: 服务器 · 发布时间: 6年前

上次主要说了在githubCI的服务器,并且也演示了github的runner执行CICD,这次通过真实的JAVA-Maven项目来演示下CICD。项目通过gitlab和gitlabCI进行CICD。

源码地址:https://github.com/limingios/gitlabci-maven

随便找一个开源的JAVA-Maven的在github项目。添加到gitlab上。

copy到gitlab上

  • new project

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

  • Git repository URL

    >https://github.com/limingios/gitlabci-maven

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

  • 点击create project

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

runner管理新的gitlabci-maven

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

maven的环境

sudo gitlab-ci-multi-runner register

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

新建github-ci 文件

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

# These are the default stages. You don't need to explicitly define them. But you could define any stages you need.
stages:
  - build
  - test
  - deploy

# This is the name of the job. You can choose it freely.
maven_build:
  # A job is always executed within a stage. If no stage is set, it defaults to 'test'
  stage: test
  # Since we require Maven for this job, we can restrict the job to runners with a certain tag. Of course, we need to configure a runner with the tag maven with a maven installation
  tags:
    - maven
  # Here you can execute arbitrate terminal commands.
  # If any of the commands returns a non zero exit code the job fails
  script:
    - echo "Building project with maven"
    - mvn verify

开始CI操作

修改.gitlab-ci.yml 就开启了自动构建模式。

  • 报错了。 跟 python 当初构建的时候一样。
Running with gitlab-ci-multi-runner 9.5.1 (96b34cc)
  on maven (e6c8a28d)
Using Docker executor with image maven:latest ...
Using docker image sha256:c4ef2f017e30bbabddf847a3f458985e55ccc24a2be7dbdf72dc032e7bece3e5 for predefined container...
Pulling docker image maven:latest ...
Using docker image maven:latest ID=sha256:1361ae58b0a463172267a0622430ad5f4f8108c4d4b7b1ae7d552e367cf92413 for build container...
Running on runner-e6c8a28d-project-3-concurrent-0 via gitlab-ci...
Cloning repository...
Cloning into '/builds/root/gitlabci-maven'...
fatal: unable to access 'http://gitlab-ci-token:xxxxxxxxxxxxxxxxxxxx@gitlab.example.com/root/gitlabci-maven.git/': Couldn't resolve host 'gitlab.example.com'
ERROR: Job failed: exit code 1

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

Runner启动的 docker 容器里无法访问到 gitlab.example.com 这个地址(能访问到才怪)。这一般是由于我们的测试环境没有使用域名导致的, gitlab论坛 里也不少人讨论这个问题,如果你是在部署正式的gitlab环境,那你自然会有一个域名来使用。不过我这里只是搭建测试环境,所以我使用了一种投机的方法:

修改Runner的 /etc/gitlab-runner/config.toml 文件,在其中的 [runner.docker] 下增加:

sudo vi /etc/gitlab-runner/config.toml

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

成功了 重新Retry

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

6666 美滋滋,当初怼了个python现在 java 遇到这个问题知道咋解决了。

『中级篇』docker之CI/CD持续集成—真实JAVA-Maven项目的CI演示(73)

百度未收录

>>原创文章,欢迎转载。转载请注明:转载自IT人故事会,谢谢!

>>原文链接地址:


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

网站分析实战

网站分析实战

王彦平 吴盛峰 / 电子工业出版社 / 2013-1 / 59.00元

《网站分析实战:如何以数据驱动决策,提升网站价值》由王彦平、吴盛峰著。目前,越来越多的网站开始重视数据,并期望从中发现新的机会,不管你是做网络营销、互联网产品设计、电子商务运营、个人站点运营维护,我们都希望从数据中寻找有价值的结论,并且指导公司管理层的决策,最终创造更大的网站价值。《网站分析实战:如何以数据驱动决策,提升网站价值》以通俗易懂的方式来讲解网站分析所需掌握的知识,剖析日常工作中遇到的问......一起来看看 《网站分析实战》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

MD5 加密
MD5 加密

MD5 加密工具