Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Apr 22, 2024
1 parent 17b6c56 commit e238b29
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-chainlink-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
AWS_ROLE_TO_ASSUME: ${{ inputs.AWS_ROLE_TO_ASSUME }}
- name: Build Image
if: steps.check-image.outputs.exists != 'true'
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/build-image@519851800779323566b7b7c22cc21bff95dbb639
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/build-image@519851800779323566b7b7c22cc21bff95dbb639 # v2.3.14
with:
cl_repo: smartcontractkit/chainlink
cl_ref: ${{ inputs.git_commit_sha }}
Expand Down
27 changes: 15 additions & 12 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,9 @@ jobs:
go_coverage_dest_dir: ${{ github.workspace }}/.covdata

- name: Upload Coverage Data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cl-node-coverage-data
name: cl-node-coverage-data-${{ matrix.product.name }}
path: .covdata
retention-days: 1

Expand Down Expand Up @@ -498,9 +498,9 @@ jobs:
go_coverage_dest_dir: ${{ github.workspace }}/.covdata

- name: Upload Coverage Data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cl-node-coverage-data
name: cl-node-coverage-data-${{ matrix.product.name }}
path: .covdata
retention-days: 1

Expand Down Expand Up @@ -709,9 +709,9 @@ jobs:
go_coverage_dest_dir: ${{ github.workspace }}/.covdata

- name: Upload Coverage Data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cl-node-coverage-data
name: cl-node-coverage-data-${{ matrix.product.name }}-${{ matrix.product.tag_suffix }}
path: .covdata
retention-days: 1

Expand Down Expand Up @@ -819,10 +819,13 @@ jobs:
repository: smartcontractkit/chainlink
ref: ${{ inputs.cl_ref || github.event.pull_request.head.sha || github.event.merge_group.head_sha }}
- name: Download All Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: cl-node-coverage-data
path: cl-node-coverage-data
pattern: cl-node-coverage-data-*
merge-multiple: true
- name: List all files and directories
run: ls -R
- name: Show Coverage
run: go run ./integration-tests/scripts/show_coverage.go "${{ github.workspace }}/cl-node-coverage-data/*/merged"

Expand Down Expand Up @@ -919,9 +922,9 @@ jobs:
go_coverage_src_dir: /var/tmp/go-coverage
go_coverage_dest_dir: ${{ github.workspace }}/.covdata
- name: Upload Coverage Data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cl-node-coverage-data
name: cl-node-coverage-data-migration-tests
path: .covdata
retention-days: 1

Expand Down Expand Up @@ -1229,9 +1232,9 @@ jobs:
go_coverage_dest_dir: ${{ github.workspace }}/.covdata

- name: Upload Coverage Data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cl-node-coverage-data
name: cl-node-coverage-data-solana-tests
path: .covdata
retention-days: 1

0 comments on commit e238b29

Please sign in to comment.