Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-ares-solaris10-i386 Build #3611

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionfe5225b5eaf3a1a0ce149023d38a9922a114798b
Got Revisionfe5225b5eaf3a1a0ce149023d38a9922a114798b
Changes3 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 2 hrs, 54 mins, 28 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave
buildername curl-ares-solaris10-i386 Builder
buildnumber 3611 Build
codebase Build
got_revision fe5225b5eaf3a1a0ce149023d38a9922a114798b Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision fe5225b5eaf3a1a0ce149023d38a9922a114798b Build
scheduler schedule-curl-ares-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartSat Aug 9 05:41:45 2025
EndSat Aug 9 14:22:59 2025
Elapsed8 hrs, 41 mins, 13 secs

All Changes:

:

  1. Change #242521

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 08 Aug 2025 23:36:30
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision dda251ef1020da07dc4640a225e01051cb977535

    Comments

    cmake: define `WIN32_LEAN_AND_MEAN` for examples
    To build faster. Also syncing with autotools.
    
    Job                 | Before | After |
    :------------------ | -----: | ----: |
    dl-mingw 15         |    45s |   39s |
    dl-mingw 9.5.0      |    72s |   49s |
    dl-mingw 7.3.0      |    29s |   19s |
    dl-mingw 6.4.0      |    20s |    9s |
    Linux cross         |    30s |   19s |
    MSVC UWP            |    77s |   65s |
    MSVC x64            |    27s |   22s |
    VS2010              |    61s |   48s |
    VS2022 clang-cl     |   226s |  195s |
    
    It also happens to fix what looks like a Windows SDK header bug seen
    with VS2019 on AppVeyor CI:
    ```
    C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um\winscard.h(1422,1): error C2220: the following warning is treated as an error (compiling source file C:\projects\curl\docs\examples\block_ip.c)
    C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um\winscard.h(1422,1): warning C5031: #pragma warning(pop): likely mismatch, popping warning state pushed in different file (compiling source file C:\projects\curl\docs\examples\block_ip.c)
    C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um\winioctl.h : message : #pragma warning(push) (compiling source file C:\projects\curl\docs\examples\block_ip.c)
    C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um\windows.h(254,17): warning C5031: #pragma warning(pop): likely mismatch, popping warning state pushed in different file (compiling source file C:\projects\curl\docs\examples\block_ip.c)
    C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um\winscard.h : message : #pragma warning(push) (compiling source file C:\projects\curl\docs\examples\block_ip.c)
    C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um\winsock2.h(4221,1): warning C5031: #pragma warning(pop): likely mismatch, popping warning state pushed in different file (compiling source file C:\projects\curl\docs\examples\block_ip.c)
    C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um\windows.h : message : #pragma warning(push) (compiling source file C:\projects\curl\docs\examples\block_ip.c)
    C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um\winsock2.h : warning C5032: detected #pragma warning(push) with no corresponding #pragma warning(pop) (compiling source file C:\projects\curl\docs\examples\block_ip.c)
    ```
    Ref: https://ci.appveyor.com/project/curlorg/curl/builds/52531106/job/66b6r098pll2le70#L312
    
    Closes #18232

    Changed files

    • docs/examples/CMakeLists.txt
  2. Change #242537

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 09 Aug 2025 02:01:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 869506d2dac1aa0555493f057ed23d5bd5e24ab3

    Comments

    appveyor: show disk space used in each job
    Also bump minimum dir size in GHA, to reduce details.
    
    Follow-up to be71475b1313ff017acc1efab16e0fea84cd32f5 #18150
    Closes #18235

    Changed files

    • .github/workflows/windows.yml
    • appveyor.sh
  3. Change #242539

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 09 Aug 2025 02:27:43
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fe5225b5eaf3a1a0ce149023d38a9922a114798b

    Comments

    cmake: optimize building examples in CI
    In CI we want to ensure that examples build cleanly, but we don't want
    to actually run them there. Meaning it's enough to just compile, but not
    link them in CI. Saving time up to 2-4x (MSVC), and disk space up
    to 1.2GB (or 8-70x).
    
    Add a new cmake target that compiles all examples without linking them
    into runnable binaries. Keep a full build for a single example to test
    if it links correctly.
    
    Also:
    - CI: switch over all `curl-examples` targets to `curl-examples-build`
    - GHA/linux-old: build examples in one of the cmake builds.
    
    Result highlights:
    
    Job                 | Bef. |  Bef. | Aft. | Aft. |
    :------------------ | ---: | ----: | ---: |----: |
    cygwin              |  15s |   9MB |  10s |  1MB |
    msys                |  13s |   8MB |   7s |  1MB |
    dl-mingw 15         |  39s |  113M |  34s |  2MB |
    dl-mingw 9.5.0      |  49s | 115MB |  42s |  2MB |
    dl-mingw 7.3.0      |  19s | 113MB |  14s |  2MB |
    dl-mingw 6.4.0      |   9s |  12MB |   7s |  4MB |
    Linux cross         |  19s |  28MB |  19s |  2MB |
    MSVC UWP            |  65s | 374MB |   9s | 17MB |
    MSVC x64            |  22s | 846MB |   9s | 17MB |
    VS2010              |  48s | 105MB |  15s |  9MB |
    VS2022 clang-cl     | 195s | 1.2GB |  51s | 20MB |
    iOS Xcode           |   8s |       |   5s |      |
    macOS LibreSSL      |  16s |       |  11s |      |
    Linux aws-lc        |   3s |       |   1s |      |
    
    Follow-up to dda251ef1020da07dc4640a225e01051cb977535 #18232
    
    Closes #18209

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux-old.yml
    • .github/workflows/linux.yml
    • .github/workflows/macos.yml
    • .github/workflows/non-native.yml
    • .github/workflows/windows.yml
    • appveyor.sh
    • docs/examples/CMakeLists.txt