chore: update sysaccount job name (#2214) #78
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CICD-PUSH | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
- '*/*' | ||
tags-ignore: | ||
- '*' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
GITLAB_GO_CACHE_PROJECT_ID: 98800 | ||
GO_CACHE: "go-cache" | ||
GO_CACHE_DIR: "/root/.cache" | ||
jobs: | ||
trigger-mode: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
trigger-mode: ${{ steps.get_trigger_mode.outputs.trigger_mode }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
- name: Get trigger mode | ||
id: get_trigger_mode | ||
run: | | ||
TRIGGER_MODE=`bash .github/utils/utils.sh --type 6` | ||
echo $TRIGGER_MODE | ||
echo trigger_mode=$TRIGGER_MODE >> $GITHUB_OUTPUT | ||
pre-push: | ||
needs: trigger-mode | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref_name != 'main' }} | ||
name: Push Pre-Check | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
- name: install pcregrep | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install pcregrep | ||
- name: gen pcregrep | ||
run: | | ||
pcregrep --exclude-dir=mtr -r -n -I '[^\x00-\x7f]' . > pcregrep.out | ||
- name: pcregrep Chinese | ||
run: | | ||
FILE_PATH=`git diff --name-only HEAD HEAD^` | ||
python ${{ github.workspace }}/.github/utils/pcregrep.py \ | ||
--source="${{ github.workspace }}/pcregrep.out" \ | ||
--filter="$FILE_PATH" | ||
- name: Spell Check with Typos | ||
if: contains(needs.trigger-mode.outputs.trigger-mode, '[docs]') | ||
uses: crate-ci/typos@v1.13.14 | ||
with: | ||
files: docs/ | ||
config: .github/utils/typos.toml | ||
cli-doc: | ||
needs: trigger-mode | ||
runs-on: ubuntu-latest | ||
if: ${{ contains(needs.trigger-mode.outputs.trigger-mode, '[cli]') && github.ref_name != 'main' }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: install lib | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y --no-install-recommends \ | ||
libbtrfs-dev \ | ||
libdevmapper-dev | ||
- name: Setup Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
- name: Check cli doc | ||
id: check-cli-doc | ||
run: | | ||
make kbcli-doc | ||
FILE_CHANGES=`git diff --name-only ${{ github.sha }}` | ||
if [[ ! -z "$FILE_CHANGES" ]]; then | ||
echo $FILE_CHANGES | ||
git config --local user.name "$GITHUB_ACTOR" | ||
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com" | ||
git commit -a -m "chore: auto update cli doc changes" | ||
fi | ||
echo file_changes=$FILE_CHANGES >> $GITHUB_OUTPUT | ||
- name: Push cli doc changes | ||
uses: ad-m/github-push-action@master | ||
if: ${{ steps.check-cli-doc.outputs.file_changes }} | ||
with: | ||
github_token: ${{ env.GITHUB_TOKEN }} | ||
branch: ${{ github.ref }} | ||
make-test: | ||
needs: trigger-mode | ||
runs-on: [self-hosted, eks-fargate-runner ] | ||
if: contains(needs.trigger-mode.outputs.trigger-mode, '[test]') | ||
steps: | ||
- uses: apecloud/checkout@main | ||
- name: Download ${{ env.GO_CACHE }} | ||
if: ${{ github.ref_name != 'main' }} | ||
run: | | ||
bash .github/utils/release_gitlab.sh \ | ||
--type 6 \ | ||
--project-id ${{ env.GITLAB_GO_CACHE_PROJECT_ID }} \ | ||
--tag-name ${{ env.GO_CACHE }} \ | ||
--asset-name ${{ env.GO_CACHE }}.tar.gz \ | ||
--access-token ${{ secrets.GITLAB_ACCESS_TOKEN }} | ||
- name: Extract ${{ env.GO_CACHE }} | ||
if: ${{ github.ref_name != 'main' }} | ||
uses: a7ul/tar-action@v1.1.3 | ||
with: | ||
command: x | ||
cwd: ${{ env.GO_CACHE_DIR }} | ||
files: ${{ env.GO_CACHE }}.tar.gz | ||
- name: make manifests check | ||
run: | | ||
mkdir -p ./bin | ||
cp -r /go/bin/controller-gen ./bin/controller-gen | ||
cp -r /go/bin/setup-envtest ./bin/setup-envtest | ||
make manifests | ||
FILE_CHANGES=`git diff --name-only ${{ github.sha }}` | ||
if [[ ! -z "$FILE_CHANGES" ]]; then | ||
echo $FILE_CHANGES | ||
echo "make manifests causes inconsistent files" | ||
exit 1 | ||
fi | ||
- name: make mod-vendor and lint | ||
run: | | ||
make mod-vendor lint | ||
- name: make test | ||
run: | | ||
make test | ||
- name: upload coverage report | ||
uses: codecov/codecov-action@v3 | ||
continue-on-error: true | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ./cover.out | ||
flags: unittests | ||
name: codecov-report | ||
verbose: true | ||
- name: Compress ${{ env.GO_CACHE }} | ||
if: ${{ github.ref_name == 'main' }} | ||
uses: a7ul/tar-action@v1.1.3 | ||
with: | ||
command: c | ||
cwd: ${{ env.GO_CACHE_DIR }} | ||
files: | | ||
./ | ||
outPath: ${{ env.GO_CACHE }}.tar.gz | ||
- name: Upload ${{ env.GO_CACHE }} to gitlab | ||
if: ${{ github.ref_name == 'main' }} | ||
run: | | ||
bash .github/utils/release_gitlab.sh \ | ||
--type 5 \ | ||
--project-id ${{ env.GITLAB_GO_CACHE_PROJECT_ID }} \ | ||
--tag-name ${{ env.GO_CACHE }} \ | ||
--asset-path ${{ env.GO_CACHE }}.tar.gz \ | ||
--access-token ${{ secrets.GITLAB_ACCESS_TOKEN }} | ||
check-image: | ||
needs: trigger-mode | ||
if: ${{ contains(needs.trigger-mode.outputs.trigger-mode, '[docker]') && github.ref_name != 'main' }} | ||
uses: apecloud/apecd/.github/workflows/release-image.yml@v0.2.0 | ||
with: | ||
MAKE_OPS_PRE: "generate" | ||
MAKE_OPS: "build-manager-image" | ||
IMG: "apecloud/kubeblocks" | ||
VERSION: "check" | ||
GO_VERSION: 1.19 | ||
secrets: inherit | ||
check-helm: | ||
needs: trigger-mode | ||
if: ${{ contains(needs.trigger-mode.outputs.trigger-mode, '[deploy]') && github.ref_name != 'main' }} | ||
uses: apecloud/apecd/.github/workflows/release-charts.yml@v0.5.0 | ||
Check failure on line 195 in .github/workflows/cicd-push.yml GitHub Actions / .github/workflows/cicd-push.ymlInvalid workflow file
|
||
with: | ||
MAKE_OPS: "bump-chart-ver" | ||
VERSION: "v0.4.0-check" | ||
CHART_NAME: "kubeblocks" | ||
CHART_DIR: "deploy/helm" | ||
PUSH_ENABLE: false | ||
secrets: inherit | ||
deploy-kubeblocks-io: | ||
needs: trigger-mode | ||
if: ${{ contains(needs.trigger-mode.outputs.trigger-mode, '[docs]') && (github.ref_name == 'main' || startsWith(github.ref_name, 'release')) }} | ||
uses: apecloud/apecd/.github/workflows/trigger-workflow.yml@v0.5.0 | ||
with: | ||
GITHUB_REPO: "apecloud/kubeblocks.io" | ||
BRANCH_NAME: "master" | ||
WORKFLOW_ID: "deploy.yml" | ||
secrets: inherit |