-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
manjunathb4461
committed
Jul 10, 2024
1 parent
37a2c3a
commit 02f1a4f
Showing
1 changed file
with
7 additions
and
114 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,119 +5,12 @@ on: | |
pull_request: | ||
branches: | ||
- master | ||
# Only run 1 of this workflow at a time per PR | ||
concurrency: | ||
group: chainlink-data-streams-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
PACKAGES: "mercury" | ||
|
||
jobs: | ||
init: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix_packages: ${{ steps.set-matrix-packages.outputs.matrix_packages }} | ||
lint_args_packages: ${{ steps.set-matrix-packages.outputs.lint_args_packages }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set matrix packages | ||
id: set-matrix-packages | ||
shell: bash | ||
env: | ||
PACKAGES: ${{ env.PACKAGES }} | ||
run: | | ||
matrix_packages=$(echo "${PACKAGES}" | jq -R 'split(",")' | tr -d "\n\t") | ||
echo "matrix_packages=${matrix_packages}" | tee -a "${GITHUB_OUTPUT}" | ||
- name: Set lint args packages | ||
id: set-lint-args-packages | ||
shell: bash | ||
env: | ||
PACKAGES: ${{ env.PACKAGES }} | ||
run: echo "lint_args_packages=$(echo "./$(echo $PACKAGES | sed 's/,/\/... .\//g;s/$/\/.../')")" | tee -a "${GITHUB_OUTPUT}" | ||
|
||
ci-lint: | ||
runs-on: ubuntu-latest | ||
needs: [init] | ||
permissions: | ||
id-token: write | ||
contents: read | ||
actions: read | ||
steps: | ||
- name: ci-lint | ||
uses: smartcontractkit/.github/actions/ci-lint-go@7ac9af09dda8c553593d2153a975b43b6958fa9f # [email protected] | ||
with: | ||
# grafana inputs | ||
metrics-job-name: ci-lint | ||
gc-basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | ||
gc-host: ${{ secrets.GRAFANA_INTERNAL_HOST }} | ||
gc-org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | ||
# env inputs | ||
use-env-files: "true" | ||
env-files: ./tools/env/ci.env | ||
# go inputs | ||
use-go-cache: true | ||
go-cache-dep-path: "**/go.sum" | ||
go-version-file: go.mod | ||
golangci-lint-version: "v1.55.2" | ||
golangci-lint-args: --out-format colored-line-number,checkstyle:golangci-lint-report.xml ${{ needs.init.outputs.lint_args_packages }} | ||
|
||
ci-lint-misc: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ci-lint-misc | ||
uses: smartcontractkit/.github/actions/ci-lint-misc@6b08487b176ef7cad086526d0b54ddff6691c044 # [email protected] | ||
with: | ||
# grafana inputs | ||
metrics-job-name: ci-lint-misc | ||
gc-basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | ||
gc-host: ${{ secrets.GRAFANA_INTERNAL_HOST }} | ||
gc-org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | ||
|
||
|
||
ci-test: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: read | ||
actions: read | ||
steps: | ||
- name: ci-test | ||
uses: smartcontractkit/.github/actions/ci-test-go@f8efc6bb91480713ddd64eaabd63d4b97ae6f088 # [email protected] | ||
with: | ||
# grafana inputs | ||
metrics-job-name: ci-test | ||
gc-basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | ||
gc-host: ${{ secrets.GRAFANA_INTERNAL_HOST }} | ||
gc-org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | ||
# docker inputs | ||
use-docker-compose: "true" | ||
docker-compose-workdir: ./tools/docker/setup-postgres | ||
# env inputs | ||
use-env-files: "true" | ||
env-files: ./tools/env/ci.env | ||
# go inputs | ||
use-go-cache: "true" | ||
go-cache-dep-path: "**/go.sum" | ||
go-version-file: go.mod | ||
go-test-cmd: make test-ci | ||
|
||
ci-sonarqube: | ||
needs: [ci-lint, ci-test] | ||
if: ${{ always() }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ci-sonarqube | ||
uses: smartcontractkit/.github/actions/ci-sonarqube-go@3e11dbc45e4c8b18dd996fb417ccf22056176388 # [email protected] | ||
with: | ||
# grafana inputs | ||
metrics-job-name: ci-sonarqube | ||
gc-basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | ||
gc-host: ${{ secrets.GRAFANA_INTERNAL_HOST }} | ||
gc-org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | ||
# sonarqube inputs | ||
sonar-token: ${{ secrets.SONAR_TOKEN }} | ||
sonar-host-url: ${{ secrets.SONAR_HOST_URL }} | ||
go-mod-validation: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: go-mod-validation | ||
uses: smartcontractkit/.github/apps/go-mod-validator@6c0e677923a08f94b2721c3457e3af498e0c087c # 0.0.0 | ||
with: | ||
github_action_ref: 6c0e677923a08f94b2721c3457e3af498e0c087c |