We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c8ee75 commit 070472aCopy full SHA for 070472a
.github/workflows/rust.yml
@@ -69,11 +69,13 @@ jobs:
69
- name: Add rustup components
70
run: rustup component add rustfmt clippy
71
72
- - name: Install libffi7 for LLVM 7
+ - name: Install dependencies for LLVM 7
73
if: matrix.os == 'ubuntu-24.04'
74
run: |
75
wget -O libffi7.deb http://security.ubuntu.com/ubuntu/pool/universe/libf/libffi7/libffi7_3.3-5ubuntu1_amd64.deb
76
- sudo dpkg -i libffi7.deb || sudo apt-get install -f -y
+ sudo apt-get update
77
+ sudo apt-get install -y ./*.deb
78
+ sudo apt-get install -y liblzma-dev
79
80
- name: Install LLVM 7
81
if: contains(matrix.os, 'ubuntu')
0 commit comments