3
目的:摆脱Jenkins部署;如果前端有自己的服务器环境;可以借助gitlab-runner实现CI自动部署并且发送结果通知消息

1. 服务器安装gitlab-runner

先确认服务器环境信息之后找到对应的gitlab-runner安装包
  1. 使用uname -a 查看服务器版本信息
    image.png
  2. 在此处找到符合自己版本信息的安装包
  3. 使用安装包安装gitlab-runner程序;如果提示sudo: curl:找不到命令, 则使用yum安装curl后重新安装程序yum update -y && yum install curl -y,(因为安装curl之前会先进行yum的update所以这个时间挺长的)

    sudo curl -L --output /usr/local/bin/gitlab-runner "https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-amd64"
  4. 给定执行权限

    sudo chmod +x /usr/local/bin/gitlab-runner
  5. 创建一个用户

    sudo useradd --comment 'GitLab Runner' --create-home gitlab-runner --shell /bin/bash
  6. 安装运行服务

    sudo gitlab-runner install --user=gitlab-runner --working-directory=/home/gitlab-runner
    sudo gitlab-runner start

    如果这一步也提示sudo: gitlab-runner:找不到命令;需要

    # 修改/etc/sudoers文件;找到这一行
    Defaults    secure_path = /sbin:/bin:/usr/sbin:/usr/bin  
    # 将要执行的命令所在的目录添加到后面,即可
    Defaults    secure_path = /sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin 

    重新执行安装运行服务就可以继续了

  7. 验证安装信息gitlab-runner -v
    image.png

2. 配置注册Runner

  1. 在自己gitlab仓库找到对应的信息 > Settings -> CI/CD -> Runners -> Specific Runners
    image.png
  2. 在服务器下执行注册命令sudo gitlab-runner register
    image.png
  3. 查看正在激活的Runner gitlab-runner verify
    image.png
  4. 也可以在CI处看到已经被激活
    image.png

3. 编写yml配置文件

在自己项目的根路径下编写.gitlab-ci.yml脚本文件
image.png
编写符合自己的程序

stages: # 分阶段
  - install
  - build
  - deploy
  - notify

cache: # 缓存内容
  paths:
    - node_modules/
    - dist/

install-job:
  tags: # 触发runner(这个就是注册的时候填写的tag)
    - master
  only: # 哪些分支触发
    - master
  stage: install # 当前阶段
  script:
    - echo '安装依赖阶段....'
    - npm install

build-job:
  tags:
    - master
  only:
    - master
  stage: build
  script:
    - npm run build:dev

deploy-job:
  tags:
    - master
  only:
    - master
  stage: deploy
  script:
    - whoami
    - sudo scp -r ./dist/* /www/html/kangshifu/kangshifu-vue/mars/dist


# 构建成功时的通知消息
notifySuccessWeChat:
  stage: notify
  script:
    - echo $title $sucContent
    - curl 'http://pushplus.hxtrip.com/send' -H 'Content-Type:application/json' -d "{\"token\":\"130a550e3a6d4dd2a019a98a5c022900\",\"title\":\"康师傅_前端_智云系统-部署结果(ci)\",\"content\":\"成功\",\"template\":\"html\",\"topic\":\"kangshifuFeZhiyun\"}"
  only:
    - master
  tags:
    - master
  when: on_success    

# 构建失败时的通知消息
notifyFailWeChat:
  stage: notify
  script:
    - curl 'http://pushplus.hxtrip.com/send' -H 'Content-Type:application/json' -d "{\"token\":\"130a550e3a6d4dd2a019a98a5c022900\",\"title\":\"康师傅_前端_智云系统-部署结果(ci)\",\"content\":\"失败\",\"template\":\"html\",\"topic\":\"kangshifuFeZhiyun\"}"
  only:
    - master
  tags:
    - master
  when: on_failure  
此脚本中包含了部署结果的通知;具体配置方式可以查看对应的文档进行配置,也可以使用钉钉消息或者企业微信消息等方式

此处可能遇到的问题

  1. git版本问题

    报错:
    Getting source from Git repository
    00:01
    Fetching changes with git depth set to 50...
    Reinitialized existing Git repository in /home/gitlab-runner/builds/ErNGnaLr/0/ivm/mars/.git/
    fatal: git fetch-pack: expected shallow list
    fatal: The remote end hung up unexpectedly
    Cleaning up project directory and file based variables
    00:00
    ERROR: Job failed: exit status 1
    
    原因:
    centos7 基础仓库,提供的 git 版本只有到 1.8.3,沒办法使用 git 2 的一些新功能
    
    解决方法:
    安装最新版本的git就可以了
  2. 拷贝文件问题
    因为没有使用sshpass 的方式操作文件;当前使用的scp 进行文件的操作;可能会提示

    报错: 
    We trust you have received the usual lecture from the local System
    Administrator. It usually boils down to these three things:
     #1) Respect the privacy of others.
     #2) Think before you type.
     #3) With great power comes great responsibility.
    sudo: no tty present and no askpass program specified
    Cleaning up project directory and file based variables
    00:00
    ERROR: Job failed: exit status 1
    
    原因:
    由于尝试使用sudo运行命令引起的 ,但是调用用户没有被授权使用 sudo
    
    解决:
    打开 sudoers 文件`vim /etc/sudoers` ;将以下内容添加到文件底部
    gitlab-runner ALL=(ALL) NOPASSWD: ALL

至此gitlab-runner已经可以成功的运行了「手动撒花🎉」 ;也能收到部署结果的推送消息
image.png
image.png


songxianling1992
1.3k 声望3.6k 粉丝

当你不知道该选择哪条路的时候;可能你已经走了好一阵子了~