云原生之旅 - 13)基于 Github icode9 Action 的自动化流水线
作者:互联网
前言
GItHub Actions是一个持续集成和持续交付的平台,能够让你自动化你的编译、测试和部署流程。GitHub 提供 Linux、Windows 和 macOS 虚拟机来运行您的工作流程,或者您可以在自己的数据中心或云基础架构中托管自己的自托管运行器。它是 GitHub 于2018年10月推出的持续集成服务。
基本概念
- workflow (工作流程):持续集成一次运行的过程,就是一个 workflow。
- job (任务):一个 workflow 由一个或多个 jobs 构成,含义是一次持续集成的运行,可以完成多个任务。
- step(步骤):每个 job 由多个 step 构成,一步步完成。
- action (动作):每个 step 可以依次执行一个或多个命令(action)
使用
下面用例子来介绍一个workflow
首先定义一个workflow 的 name
# This is a CICD workflow for demo name: cicd-demo
然后定义一下事件触发机制
# Controls when the action will run. Triggers the workflow on push or pull request # events but only for the below branch and specific path on: push: branches: - main - develop paths: - 'demo-app/**' pull_request: branches: - main paths: - 'demo-app/**'
然后定义一个 Build Job 以及 Outputs 供后续步骤使用
jobs: # The "build" job build: # The type of runner that the job will run on runs-on: ubuntu-latest outputs: image_tag: ${{ steps.build_app.outputs.image_tag }} actor: ${{ steps.build_app.outputs.actor }} # Steps represent a sequence of tasks that will be executed as part of the job steps:
来看Steps
Checkout 代码
steps: # Checks-out your repository under $GITHUB_WORKSPACE - name: checkout repo uses: actions/checkout@v3
Setup go env
- name: Setup go uses: actions/setup-go@v3 with: go-version-file: 'demo-app/go.mod' check-latest: true cache: true cache-dependency-path: demo-app/go.sum
Login google container registry
- name: Login to GCR uses: docker/login-action@v2 with: registry: asia.gcr.io username: _json_key password: ${{ secrets.GCR_JSON_KEY }}
Build Image and Push to registry
make 命令很简单,执行的就是docker build 和 push
- name: build application id: build_app run: |- VER=`cat demo-app/Makefile| grep TAG= | awk -F "=" 'NR==1{print $2}'` GIT_COMMIT=$(git log | grep commit | awk 'NR==1{print $2}' | cut -c1-7) cd helm-go-client make push TAG2=-$GIT_COMMIT # set output echo "::set-output name=image_tag::$(echo "$VER-$GIT_COMMIT")" echo "::set-output name=actor::$(echo "$GITHUB_ACTOR")"
Makefile 供参考
Post setup
# Workaround to avoid Post Use step failures related to cache # Error: There are no cache folders on the disk - name: Post setup run: mkdir -p /home/runner/.cache/go-build continue-on-error: true