ci: skip process/command example on windows (#8617)

pull/8605/head^2
Lukas Neubert 2021-02-07 12:46:22 +01:00 committed by GitHub
parent 13350681dd
commit 46f8e68bec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -339,8 +339,9 @@ pub fn prepare_test_session(zargs string, folder string, oskipped []string, main
continue
}
$if windows {
// skip pico example on windows
if f.ends_with('examples\\pico\\pico.v') {
// skip pico and process/command examples on windows
if f.ends_with('examples\\pico\\pico.v')
|| f.ends_with('examples\\process\\command.v') {
continue
}
}