To add missing file for coverage (#2318)

This commit is contained in:
Cesar Celis Hernandez
2022-09-15 20:36:00 -04:00
committed by GitHub
parent 4ac6ecb558
commit 6ed5084691

View File

@@ -85,6 +85,13 @@ jobs:
./replication/coverage/
key: ${{ runner.os }}-replication-coverage-2-${{ github.run_id }}
# To save our replication.out file into an artifact.
# By default, GitHub stores build logs and artifacts for 90 days.
- uses: actions/upload-artifact@v3
with:
name: replication-artifact
path: ./replication/coverage/replication.out
sso-integration:
name: SSO Integration Test
@@ -1807,6 +1814,12 @@ jobs:
./pkg/coverage/
key: ${{ runner.os }}-coverage-pkg-2-${{ github.run_id }}
# Get the replication.out file from the artifact since this is working for self host runner.
- uses: actions/download-artifact@v3
with:
name: replication-artifact
path: replication/coverage
- name: Get coverage
run: |
echo "change directory to gocovmerge"