]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CI/azure: disable parallel tests, allow IDN tests
authorViktor Szakats <commit@vsz.me>
Mon, 19 Aug 2024 07:28:17 +0000 (09:28 +0200)
committerViktor Szakats <commit@vsz.me>
Mon, 19 Aug 2024 12:09:14 +0000 (14:09 +0200)
They started show the similar flakiness as the GHA ones after enabling
parallel tests (`-j2`) by default.

Example flaky run:
https://dev.azure.com/daniel0244/curl/_build/results?buildId=24763&view=results

Ubuntu:
```
FAIL 137: 'FTP download without size in RETR string' FTP, RETR, --data-binary
FAIL 336: 'FTP range download when SIZE doesn't work' FTP, PASV, TYPE A, RETR
FAIL 975: 'HTTP with auth redirected to FTP allowing auth to continue' HTTP, FTP, --location-trusted
FAIL 1378: 'FTP DL, file without Content-Disposition inside, using -o fname' FTP, RETR
```

MSYS2 mingw32:
```
FAIL 1501: 'FTP with multi interface and slow LIST response' FTP, RETR, multi, LIST, DELAY
```

MSYS2 mingw64:
```
FAIL 1501: 'FTP with multi interface and slow LIST response' FTP, RETR, multi, LIST, DELAY
```

Follow-up to 0324d557e4b4f754ea89636ea9164065f6446560 #11510

Closes #14593

.azure-pipelines.yml

index 96c36933e6606a1f4bcdfe9063bfd5f9bd43cb57..f4a7039f6ece68d761c9f47d495c269e9456918b 100644 (file)
@@ -112,7 +112,7 @@ stages:
             displayName: 'test'
             env:
               AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
-              TFLAGS: "-ac /usr/bin/curl -r $(tests)"
+              TFLAGS: "-j0 -ac /usr/bin/curl -r $(tests)"
 
   - stage: scanbuild
     dependsOn: []
@@ -244,4 +244,4 @@ stages:
             displayName: 'test'
             env:
               AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
-              TFLAGS: "-ac /usr/bin/curl.exe !IDN !SCP ~612 $(tests)"
+              TFLAGS: "-j0 -ac /usr/bin/curl.exe !SCP ~612 $(tests)"