From: Neil Horman Date: Mon, 9 Sep 2024 12:02:13 +0000 (-0400) Subject: Use Jq to add openssl to interop test harness X-Git-Tag: openssl-3.5.0-alpha1~1145 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d677482b7e3d586a2fb31861b69db37cf6210ed7;p=thirdparty%2Fopenssl.git Use Jq to add openssl to interop test harness Reviewed-by: Viktor Dukhovni Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/25256) --- diff --git a/.github/workflows/run_quic_interop.yml b/.github/workflows/run_quic_interop.yml index 1e51c365034..202b2c29a85 100644 --- a/.github/workflows/run_quic_interop.yml +++ b/.github/workflows/run_quic_interop.yml @@ -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: |