Paging support for azure wrapper #1385
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: Checkmarx One CLI | |
on: | |
pull_request: | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
env: | |
GOPRIVATE: "github.com/checkmarxDev/*" | |
steps: | |
- name: Checkout the repository | |
uses: actions/[email protected] | |
- name: Set up Go 1.17.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17.x | |
- name: Setup git | |
run: git config --global url."https://${{ secrets.PERSONAL_ACCESS_TOKEN }}:@github.com/".insteadOf "https://github.com" | |
- name: go test with coverage | |
run: | | |
sudo chmod +x ./internal/commands/.scripts/up.sh | |
./internal/commands/.scripts/up.sh | |
- name: Check if total coverage is greater then 80 | |
shell: bash | |
run: | | |
CODE_COV=$(go tool cover -func cover.out | grep total | awk '{print substr($3, 1, length($3)-1)}') | |
EXPECTED_CODE_COV=80 | |
var=$(awk 'BEGIN{ print "'$CODE_COV'"<"'$EXPECTED_CODE_COV'" }') | |
if [ "$var" -eq 1 ];then | |
echo "Your code coverage is too low. Coverage precentage is: $CODE_COV" | |
exit 1 | |
else | |
echo "Your code coverage test passed! Coverage precentage is: $CODE_COV" | |
exit 0 | |
fi | |
integration-tests: | |
runs-on: ubuntu-latest | |
env: | |
GOPRIVATE: "github.com/checkmarxDev/*" | |
steps: | |
- name: Checkout the repository | |
uses: actions/[email protected] | |
- name: Setup git | |
run: git config --global url."https://${{ secrets.PERSONAL_ACCESS_TOKEN }}:@github.com/".insteadOf "https://github.com" | |
- name: Set up Go 1.17.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17.x | |
- name: Go Build | |
run: go build -o ./bin/cx ./cmd | |
- name: Go Integration test | |
shell: bash | |
env: | |
CX_BASE_URI: ${{ secrets.CX_BASE_URI }} | |
CX_CLIENT_ID: ${{ secrets.CX_CLIENT_ID }} | |
CX_CLIENT_SECRET: ${{ secrets.CX_CLIENT_SECRET }} | |
CX_BASE_AUTH_URI: ${{ secrets.CX_BASE_AUTH_URI }} | |
CX_AST_USERNAME: ${{ secrets.CX_AST_USERNAME }} | |
CX_AST_PASSWORD: ${{ secrets.CX_AST_PASSWORD }} | |
CX_APIKEY: ${{ secrets.CX_APIKEY }} | |
CX_TENANT: ${{ secrets.CX_TENANT }} | |
CX_SCAN_SSH_KEY: ${{ secrets.CX_SCAN_SSH_KEY }} | |
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
PROXY_HOST: localhost | |
PROXY_PORT: 3128 | |
PROXY_USERNAME: ${{ secrets.PROXY_USER }} | |
PROXY_PASSWORD: ${{ secrets.PROXY_PASSWORD }} | |
PR_GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
PR_GITHUB_NAMESPACE: "checkmarx" | |
PR_GITHUB_REPO_NAME: "ast-cli" | |
PR_GITHUB_NUMBER: 418 | |
AZURE_ORG: ${{ secrets.AZURE_ORG }} | |
AZURE_PROJECT: ${{ secrets.AZURE_PROJECT }} | |
AZURE_REPOS: ${{ secrets.AZURE_REPOS }} | |
AZURE_TOKEN: ${{ secrets.AZURE_TOKEN }} | |
BITBUCKET_WORKSPACE: ${{ secrets.BITBUCKET_WORKSPACE }} | |
BITBUCKET_REPOS: ${{ secrets.BITBUCKET_REPOS }} | |
BITBUCKET_USERNAME: ${{ secrets.BITBUCKET_USERNAME }} | |
BITBUCKET_PASSWORD: ${{ secrets.BITBUCKET_PASSWORD }} | |
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | |
run: | | |
sudo chmod +x ./internal/commands/.scripts/integration_up.sh ./internal/commands/.scripts/integration_down.sh | |
./internal/commands/.scripts/integration_up.sh | |
./internal/commands/.scripts/integration_down.sh | |
- name: Coverage report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ runner.os }}-coverage-latest | |
path: coverage.html | |
- name: Check if total coverage is greater then 80 | |
shell: bash | |
run: | | |
CODE_COV=$(go tool cover -func cover.out | grep total | awk '{print substr($3, 1, length($3)-1)}') | |
EXPECTED_CODE_COV=80 | |
var=$(awk 'BEGIN{ print "'$CODE_COV'"<"'$EXPECTED_CODE_COV'" }') | |
if [ "$var" -eq 1 ];then | |
echo "Your code coverage is too low. Coverage precentage is: $CODE_COV" | |
exit 1 | |
else | |
echo "Your code coverage test passed! Coverage precentage is: $CODE_COV" | |
exit 0 | |
fi | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
env: | |
GOPRIVATE: "github.com/checkmarxDev/*" | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Go 1.17.x | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.17.x | |
- name: Setup git | |
run: git config --global url."https://${{ secrets.PERSONAL_ACCESS_TOKEN }}:@github.com/".insteadOf "https://github.com" | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
version: v1.52.2 | |
args: -c .golangci.yml | |
only-new-issues: true |