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

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

时间:2023-01-06 11:34:12浏览次数:68  
标签:... CI JAVA runner gitlab CD maven docker com

ICD。项目通过gitlab和gitlabCI进行CICD。
源码地址:​​​https://github.com/limingios/gitlabci-maven​​​ 源码:​​https://github.com/limingios/docker/tree/master/No.11​

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

copy到gitlab上

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

  • Git repository URL

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

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

  • 点击create project

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

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

runner管理新的gitlabci-maven

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

maven的环境

sudo gitlab-ci-multi-runner register

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

新建github-ci 文件

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

# 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:[email protected]/root/gitlabci-maven.git/': Couldn't resolve host 'gitlab.example.com'
ERROR: Job failed: exit code 1

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

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)_maven_09

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

成功了 重新Retry

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

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

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

用的不是阿里云,可能比较慢,不过是演示,之后想想办法直接在脚本里面配置下私有库的地址。

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

PS:这次主要给大家简单的介绍下CI,还没设计到CD。下次吧!

标签:...,CI,JAVA,runner,gitlab,CD,maven,docker,com
From: https://blog.51cto.com/u_12040702/5992892

相关文章

  • 『中级篇』CI/CD持续集成/持续部署(69)
    )​​从这次课就开始学习CI/CD,结合docker或者是使用k8s来完成。CICD的理解CICD是一个整套流程的解决方案,光依靠docker和k8s是完全不行的,中间涉及到很多CICD的工具,CI的服务器......
  • Java 追加写入文件内容
    FileWriter类中有一构造方法是:publicFileWriter(Filefile,booleanappend),append参数如为true则追加写入;false为覆盖写入;Stringstr="abc";FileWriterf......
  • 【LeetCode2180】[Go/C++/C#/Ruby/Swift/Kotlin/Rust/PHP/TS/Racket/Dart/Java/Elixir
    [toc]题解地址https://leetcode.cn/problems/count-integers-with-even-digit-sum/solutions/2047123/by-yhm138_-w8co/lc2180代码//点击指定元素document.querySel......
  • Java调用CMD命令
    ProcessBuilderbuilder= newProcessBuilder(commands);1、在使用ProcessBuilder时,如果commands使用{"java-version"}这种带空格的命令,可能会报文件找不到的错误,最......
  • [Java 8] (1) 函数式编程简介
    思维方式的转变以从一个城市集合中寻找是否存在Chicago为例:习惯的方式booleanfound=false;for(Stringcity:cities){if(city.equals("Chicago")){......
  • JAVA常用的工具类
    1集合工具类1.1java.util.Collections使用的基本list示意List<Integer>list=newArrayList<>();list.add(2);list.add(1);list.add(3);1.1.1基本操作Collections.so......
  • JAVA调用SAP RFC接口
    java要调用SAPRFC接口时,需要用到sapjco3.jar架包;windows下还需要将文件sapjco3.dll文件放到system32的目录下;linux下同样需要把sapjco3.so放入项目的执行目录下;下载......
  • JAVA获取上下行网速
    packagecom.iecas.zwterminalstate.util;importjava.io.BufferedReader;importjava.io.IOException;importjava.io.InputStreamReader;importjava.util.Formatter;imp......
  • 【Java】线程池梳理
    【Java】线程池梳理前言线程池:本质上是一种对象池,用于管理线程资源。在任务执行前,需要从线程池中拿出线程来执行。在任务执行完成之后,需要把线程放回线程池。通过线程的......
  • java -jar 指定logback.xml、application.yaml
    java-jar指定logback.xml -Dlogging.config="C:\logbacs\logback.xml"示例:java-jar  -Dlogging.config="/home/yqq/config/logback.xml" zwdatagather-1.0.0......