Skip to content

Commit 8e6d8e0

Browse files
committed
chore(deps): update romeo env, manually download coverages
1 parent 1c4227c commit 8e6d8e0

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/integration.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
8888
- name: Romeo environment
8989
id: env
90-
uses: ctfer-io/romeo/environment@01e503a26148eb6d37f21c9077fb9a0d5bdc4485
90+
uses: ctfer-io/romeo/environment@1c4227c1bab7d93729a1dd9b3f19c682350c97da
9191
with:
9292
stack-name: env
9393
registry: localhost:5000
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Romeo environment under test
101101
id: env-test
102-
uses: ctfer-io/romeo/environment@01e503a26148eb6d37f21c9077fb9a0d5bdc4485
102+
uses: ctfer-io/romeo/environment@1c4227c1bab7d93729a1dd9b3f19c682350c97da
103103
with:
104104
stack-name: env-test
105105
registry: localhost:5000
@@ -116,4 +116,11 @@ jobs:
116116
117117
- name: Get raw results
118118
run: |
119-
curl -v "${{ steps.server.outputs.server }}:${{ steps.env.outputs.port }}/api/v1/coverout"
119+
mkdir covs
120+
curl "${{ steps.server.outputs.server }}:${{ steps.env.outputs.port }}/api/v1/coverout" |
121+
jq -r '.merged' |
122+
base64 -d > covs/covs.zip
123+
unzip covs/covs.zip
124+
125+
go tool covdata textfmt -i=covs -o cov.out
126+
cat cov.out

0 commit comments

Comments
 (0)