diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-16 01:43:38 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-16 01:47:58 +0300 |
commit | 54c395891d98e16457fa033e2e4d3272b41b885a (patch) | |
tree | a64748fa608efb47f73f0e60d33037dd2f95fdf5 /.appveyor.yml | |
parent | test/foobar: noinline just in case (diff) | |
download | winapi-debug-54c395891d98e16457fa033e2e4d3272b41b885a.tar.gz winapi-debug-54c395891d98e16457fa033e2e4d3272b41b885a.zip |
AppVeyor: fix Release builds
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 7ae89eb..f993dce 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -37,9 +37,9 @@ after_build: - appveyor.exe PushArtifact "%APPVEYOR_PROJECT_NAME%-%PLATFORM%-%CONFIGURATION%.zip" test_script: - - '"%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\foobar.pdb"' - - '"%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\foobar.pdb" --mask "foobar!foobar_ns*"' - - '"%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\foobar.pdb" --functions --mask "foobar_ns*"' + - if exist "%install_dir%\bin\foobar.pdb" "%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\foobar.pdb" + - if exist "%install_dir%\bin\foobar.pdb" "%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\foobar.pdb" --mask "foobar!foobar_ns*" + - if exist "%install_dir%\bin\foobar.pdb" "%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\foobar.pdb" --functions --mask "foobar_ns*" - '"%install_dir%\bin\call_stack"' |