Skip to content

Commit f599dcb

Browse files
Luni-4est31
authored andcommitted
Add Windows environment (#66)
* Add Windows environment * Cargo update Result of running: cargo update -p cc --precise 1.0.41 cargo update -p schannel --precise 0.1.8 * Run sample-rate-max test only on Linux
1 parent b7c7925 commit f599dcb

File tree

3 files changed

+51
-14
lines changed

3 files changed

+51
-14
lines changed

.github/workflows/lewton.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
8-
runs-on: ubuntu-latest
97
strategy:
108
matrix:
119
rust: [stable, 1.20.0]
10+
platform: [ubuntu-latest, windows-latest]
11+
runs-on: ${{ matrix.platform }}
12+
1213
steps:
1314
- uses: actions/checkout@master
1415
- name: Install Rust

dev/cmp/Cargo.lock

Lines changed: 47 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/cmp/tests/vals.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ fn test_libnogg_vals() {
7070
cmp_output!("noise-6ch.ogg", 0);
7171
cmp_output!("noise-stereo.ogg", 0);
7272
cmp_output!("partial-granule-position.ogg", 2);
73+
#[cfg(target_os = "linux")]
7374
cmp_output!("sample-rate-max.ogg", 0);
7475
ensure_malformed!("single-code-2bits.ogg", BadHeader(HeaderBadFormat));
7576
// We can't cmp the output here because native

0 commit comments

Comments
 (0)