File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments