Commit 12bf088a authored by Alexandre Julliard's avatar Alexandre Julliard

winetest: Don't require an email if we have a URL.

parent 35be2e76
......@@ -507,7 +507,8 @@ static void print_version (void)
xprintf(", %s", is_elevated ? "elevated" : "not elevated");
xprintf ("\n");
}
xprintf (" Submitter=%s\n", email );
if (email)
xprintf (" Submitter=%s\n", email );
if (description)
xprintf (" Description=%s\n", description );
if (url)
......@@ -1502,8 +1503,11 @@ int __cdecl main( int argc, char *argv[] )
while (!email) {
if (!interactive)
{
if (url) break;
report (R_FATAL, "Please specify an email address (-m option) to enable developers\n"
" to contact you about your report if necessary.");
}
if (guiAskEmail () == IDABORT) exit (1);
}
......
......@@ -49,7 +49,7 @@ debian-32:
needs:
- job: build-daily-linux
script:
- wine usr/local/lib/wine/i386-windows/winetest.exe -q -t gitlab-$CI_JOB_NAME -m $CI_JOB_URL
- wine usr/local/lib/wine/i386-windows/winetest.exe -q -t gitlab-$CI_JOB_NAME -u $CI_JOB_URL
debian-64:
extends: .wine-test
......@@ -58,4 +58,4 @@ debian-64:
needs:
- job: build-daily-linux
script:
- wine usr/local/lib/wine/x86_64-windows/winetest.exe -q -t gitlab-$CI_JOB_NAME -m $CI_JOB_URL
- wine usr/local/lib/wine/x86_64-windows/winetest.exe -q -t gitlab-$CI_JOB_NAME -u $CI_JOB_URL
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment