Skip to content

Commit 7c8ee75

Browse files
committed
try again
1 parent f1c596b commit 7c8ee75

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/rust.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Rust CI
33
on:
44
pull_request:
55
paths-ignore:
6-
- '**.md'
6+
- "**.md"
77
push:
88
paths-ignore:
9-
- '**.md'
9+
- "**.md"
1010

1111
env:
1212
RUST_LOG: info
@@ -24,19 +24,19 @@ jobs:
2424
include:
2525
- os: ubuntu-20.04
2626
target: x86_64-unknown-linux-gnu
27-
cuda: '11.2.2'
27+
cuda: "11.2.2"
2828
linux-local-args: ["--toolkit"]
2929
- os: ubuntu-24.04
3030
target: x86_64-unknown-linux-gnu
31-
cuda: '12.8.1'
31+
cuda: "12.8.1"
3232
linux-local-args: ["--toolkit"]
3333
- os: windows-latest
3434
target: x86_64-pc-windows-msvc
35-
cuda: '11.2.2'
35+
cuda: "11.2.2"
3636
linux-local-args: []
3737
- os: windows-latest
3838
target: x86_64-pc-windows-msvc
39-
cuda: '12.8.1'
39+
cuda: "12.8.1"
4040
linux-local-args: []
4141

4242
steps:
@@ -72,8 +72,8 @@ jobs:
7272
- name: Install libffi7 for LLVM 7
7373
if: matrix.os == 'ubuntu-24.04'
7474
run: |
75-
wget http://archive.ubuntu.com/ubuntu/pool/universe/libf/libffi/libffi7_3.3-4_amd64.deb
76-
sudo dpkg -i libffi7_3.3-4_amd64.deb
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
7777
7878
- name: Install LLVM 7
7979
if: contains(matrix.os, 'ubuntu')

0 commit comments

Comments
 (0)