Skip to content

Commit

Permalink
Use Jq to add openssl to interop test harness
Browse files Browse the repository at this point in the history
Reviewed-by: Viktor Dukhovni <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
(Merged from openssl#25256)
  • Loading branch information
nhorman committed Sep 10, 2024
1 parent d2157bb commit d677482
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/run_quic_interop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
- name: Patch implementations file
run: |
head -n -2 implementations.json > ./implementations.tmp
echo -e "},\n\"openssl\": {\n\"image\": \"quay.io/openssl-ci/openssl-quic-interop\",\n\"url\": \"https://github.com/openssl/openssl\",\n\"role\": \"client\"\n}\n}" >> ./implementations.tmp
jq '.openssl = { image: "quay.io/openssl-ci/openssl-quic-interop"
, url: "https://github.com/openssl/openssl"
, role: "client"
}' ./implementations.json > ./implementations.tmp
mv ./implementations.tmp implementations.json
- name: "run interop"
run: |
Expand Down

0 comments on commit d677482

Please sign in to comment.