Skip to content

Commit f655fa2

Browse files
committed
Use PR branch as workaround in the CI for now
1 parent c79e4b0 commit f655fa2

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/lewton.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,6 @@ jobs:
3333
- name: Run cmp tests
3434
if: matrix.toolchain == '1.56.1'
3535
run: |
36-
cd dev/cmp
37-
cargo test --verbose --release
36+
sed -i.bak "/^vorb.*/d;s/#v/v/" dev/cmp/Cargo.toml
37+
cargo update -p vorbis-sys:0.0.8
38+
cargo test --verbose --release -p cmp

dev/cmp/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,7 @@ edition = "2015"
99
[dependencies]
1010
lewton = { path = "../../" }
1111
vorbis = "0.1"
12+
# Workaround for test failure.
13+
# Apply branch of this PR: https://github.com/tomaka/vorbis-rs/pull/20
14+
#vorbis = { git = 'https://github.com/roderickvd/vorbis-rs', branch = 'fix-ub-panic' }
1215
test-assets = "0.2"

0 commit comments

Comments
 (0)