We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7422df commit ae13046Copy full SHA for ae13046
.github/workflows/ci.yml
@@ -121,6 +121,10 @@ jobs:
121
steps:
122
- name: Check out code
123
uses: actions/checkout@v4
124
+ - name: Set workaround for libaio on Ubuntu 24.04 (see https://askubuntu.com/questions/1512196/libaio1-on-noble/1512197#1512197)
125
+ run: |
126
+ sudo ln -s /usr/lib/x86_64-linux-gnu/libaio.so.1t64 /usr/lib/x86_64-linux-gnu/libaio.so.1
127
+ if: ${{ matrix.os == 'ubuntu-latest' }}
128
- name: Set environment variable for Linux
129
run: echo "RunAzureTests=yes" >> $GITHUB_ENV
130
if: ${{ matrix.os == 'ubuntu-latest' }}
0 commit comments