Skip to content

Commit 83d7602

Browse files
joennlaemicprog
authored andcommitted
ci: run cva6 pickle test only on linux
1 parent f15d069 commit 83d7602

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,15 @@ jobs:
5555
if: matrix.os == 'macos-latest'
5656
- name: Install bender
5757
run: cargo install bender
58+
if: matrix.os == 'ubuntu-latest'
5859
- name: Install slang
5960
run: |
6061
sudo mkdir -p /tools && sudo chmod 777 /tools
6162
cd /tools && git clone https://github.com/MikePopoloski/slang.git && cd slang && git checkout v2.0
6263
echo $PWD
6364
cmake -B build && cmake --build build -j$(nproc)
6465
cmake --install build --strip
65-
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
66+
if: matrix.os == 'ubuntu-latest'
6667
- name: Build
6768
run: cargo build --verbose
6869
- name: Run tests

tests/cli_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ mod tests {
8888
Ok(())
8989
}
9090

91-
#[cfg(not(target_os = "windows"))]
91+
#[cfg(target_os = "linux")]
9292
#[test]
9393
fn test_cva6() -> Result<(), Box<dyn std::error::Error>> {
9494
// debug with -- --nocapture

0 commit comments

Comments
 (0)