Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/library_interop_keyring_test_vectors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ jobs:

- name: Install LibCurl
if: matrix.os == 'ubuntu-22.04' && matrix.language == 'c'
run: sudo apt-get install libcurl4-openssl-dev
shell: bash
run: |
sudo apt-get update

@ShubhamChaturvedi7 ShubhamChaturvedi7 Mar 13, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happens if we ever un-comment os: windows line? (Not that this PR can do anything about it - other than add a comment)

Nvm, this block is protected by a if os ubuntu check.

sudo apt-get install libcurl4-openssl-dev --fix-missing

- name: Checkout C-ESDK
if: matrix.language == 'c'
Expand Down Expand Up @@ -352,7 +355,10 @@ jobs:

- name: Install LibCurl
if: matrix.os == 'ubuntu-22.04' && matrix.decrypting_language == 'c'
run: sudo apt-get install libcurl4-openssl-dev
shell: bash
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev --fix-missing

- name: Checkout C-ESDK
if: matrix.decrypting_language == 'c'
Expand Down
Loading