美文网首页
一键安装gitlab runner

一键安装gitlab runner

作者: sknfie | 来源:发表于2021-05-07 18:50 被阅读0次

    概述

    GitLab Runner是一个开源项目,用于运行作业并将结果发送到GitLab。
    GitLab Runner是Go编写,可以在Linux、Windows以及Mac OS操作系统上运行。
    GitLab Runner版本应与GitLab版本同步(避免版本不一致导致bug)。
    可以根据需要配置任意数量的Runner。


    gitlab

    安装

    • 基于centos安装
      curl -LJO https://gitlab-runner-downloads.s3.amazonaws.com/latest/rpm/gitlab-runner_<arch>.rpm
      rpm -t gitlab-runner_<arch>.rpm
      rpm -Uvh gttlab-runner_<arch>.rpm
    
    • 基于macos系统安装
      sudo curl --output /usr/local/bin/gitlab-runner https://downlodd5.53.anazonaw5.con/vl2.6Zbtnartes/gttlab-runner-darwtn-afld64
      sudo chmod /usr/local/bin/gltlab-runner
      gttlab-runner Install
      gttlab-runner start
    
    • 基于Docker安装
      mkdir ~/data/gitlab-runner/config
      docker run --rm -t -ld -v ~/data/gitlab-runner/conflg:/etc/gitlab-runner gitlab/gitlab-runner:v12.9.9
    

    1.添加官方仓库

    curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh | sudo bash
    

    2.查看版本列表

    yum list gitlab-runner --showduplicates | sort -r
    

    3.安装指定版本

    yum install gitlab-runner-12.9.0-1
    

    查看版本

    [root@centos7_9-mod ux-dev]# gitlab-runner -v
    Version:      12.9.0
    Git revision: 4c96e5ad
    Git branch:   12-9-stable
    GO version:   go1.13.8
    Built:        2020-03-20T13:01:56+0000
    OS/Arch:      linux/amd64
    

    4.注册gitlab runner

    管理员

    输入GitLab的服务urI
    输入GitLab-ci 的 Token
    输入对于这个GitLab Runner的描述
    给这个GitLab Runner输入一个标记,在后续使用过程中需要tag指定GitLab
    选择执行器语言,我这里选择shell runner

    [root@centos7_9-mod ux-dev]# gitlab-runner register
    Runtime platform                                    arch=amd64 os=linux pid=5074 revision=4c96e5ad version=12.9.0
    Running in system-mode.                            
                                                       
    Please enter the gitlab-ci coordinator URL (e.g. https://gitlab.com/):
    http://192.168.2.194/
    Please enter the gitlab-ci token for this runner:
    iCC_xJoLqSczp-6EmZFb
    Please enter the gitlab-ci description for this runner:
    [centos7_9-mod]: test
    Please enter the gitlab-ci tags for this runner (comma separated):
    build
    Registering runner... succeeded                     runner=iCC_xJoL
    Please enter the executor: custom, parallels, ssh, virtualbox, kubernetes, docker, docker-ssh, shell, docker+machine, docker-ssh+machine:
    shell
    Runner registered successfully. Feel free to start it, but if it's running already the config should be automatically reloaded! 
    

    新增一条:


    新增

    编辑新增的这一条:


    编辑

    流水线

    1.常见命令

        gitlab-runner list 查看各个 Runner 的状态
        gitlab-runner stop 停止服务
        gitlab-runner start 启动服务
        gitlab-runner restart 重启服务
    

    2.流水线语法

    • Stages

    Stages 表示构建阶段,说白了就是上面提到的流程。默认有3个stages:build, test, deploy。我们可以在一次 Pipeline 中定义多个 Stages,这些 Stages 会有以下特点:
    (1)所有 Stages 会按照顺序运行,即当一个 Stage 完成后,下一个 Stage 才会开始
    (2)只有当所有 Stages 完成后,该构建任务 (Pipeline) 才会成功
    (3)如果任何一个 Stage 失败,那么后面的 Stages 不会执行,该构建任务 (Pipeline) 失败

    • Jobs

    Jobs 表示构建工作,表示某个 Stage 里面执行的工作。我们可以在 Stages 里面定义多个 Jobs,这些 Jobs 会有以下特点:
    (1)相同 Stage 中的 Jobs 会并行执行
    (2)相同 Stage 中的 Jobs 都执行成功时,该 Stage 才会成功
    (3)如果任何一个 Job 失败,那么该 Stage 失败,即该构建任务 (Pipeline) 失败

    • .gitlab-ci.yml

    .gitlab-ci.yml 用来配置 CI 用你的项目中做哪些操作,这个文件位于仓库的根目录。
    (1)当有新内容push到仓库,或者有代码合并后,GitLab会查找是否有.gitlab-ci.yml文件,如果文件存在,Runners将会根据该文件的内容开始build本次commit。
    (2).gitlab-ci.yml 使用YAML语法, 你需要格外注意缩进格式,要用空格来缩进,不能用tabs来缩进。

    • 约束

    任务中必须得有script部分。

    3. 举个栗子

    # 定义 stages(阶段)。任务将按此顺序执行。
    stages:
      - build
      - test
      - deploy
    
    build:
      script:
        - echo "build"
      stage: build
      only:
        - master
    
    test:
      script:
        - echo "test"
      stage: test
      only:
        - master
    
    deploy:
      script:
        - echo "deploy"
      stage: deploy
      only:
        - master
    

    运行流水线任务

    • 创建group


      创建group
    • 创建project


      创建project
      创建.gitlab-ci.yml

      创建两个任务:

    stages:
      - build
      - deploy
    
    build:
      stage: build
      tags:
        - build
      only:
        - master  
      script:
        - echo "---hello build---" 
      
    deploy:
      stage: deploy
      tags:
        - build
      only:
        - master 
      script:
        - echo "---hello deploy---"
    
    pipeline

    相关文章

      网友评论

          本文标题:一键安装gitlab runner

          本文链接:https://www.haomeiwen.com/subject/pkgsdltx.html