perf: simultaneous build of multiple source code components failed #1133
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: pr-ci-build | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, labeled, unlabeled] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Go environment | |
uses: actions/[email protected] | |
with: | |
# The Go version to download (if necessary) and use. Supports semver spec and ranges. | |
go-version: 1.18 | |
- name: install-golint | |
run: | | |
git clone https://github.com/golang/lint.git | |
cd lint/golint | |
go install | |
- name: Go-linter | |
run: ./check.sh | |
# - name: SonarQube Scan | |
# uses: kitabisa/[email protected] | |
# with: | |
# host: ${{ secrets.SONARQUBE_HOST }} | |
# login: ${{ secrets.SONARQUBE_TOKEN }} | |
# projectName: rainbond | |
- name: Build the Docker image | |
env: | |
DISABLE_GOPROXY: true | |
run: VERSION=${{ github.base_ref }}-dev ./release.sh all |