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

Builder curl-unthreaded-solaris11-sparc Build #2998

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision6074e33509ab38993271e0845affea5bfa561c9a
Got Revision6074e33509ab38993271e0845affea5bfa561c9a
Changes4 changes

BuildSlave:

unstable11s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris11-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 30 mins, 36 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-unthreaded-solaris11-sparc slave
buildername curl-unthreaded-solaris11-sparc Builder
buildnumber 2998 Build
codebase Build
got_revision 6074e33509ab38993271e0845affea5bfa561c9a Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 6074e33509ab38993271e0845affea5bfa561c9a Build
scheduler schedule-curl-unthreaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartThu Oct 10 19:38:38 2024
EndThu Oct 10 20:40:32 2024
Elapsed1 hrs, 1 mins, 53 secs

All Changes:

:

  1. Change #211242

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 10 Oct 2024 19:35:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ae5e538e576e32348dd6fdc1225c11d6b9ca1530

    Comments

    GHA: drop `--parallel` option for CMake + Ninja jobs
    It's managed by Ninja automatically.
    
    Closes #15249

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
    • .github/workflows/non-native.yml
    • .github/workflows/windows.yml
  2. Change #211243

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 10 Oct 2024 19:35:58
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 91519bfb7462cfda98dba63dc7f411f4fa173c57

    Comments

    cmake: use `cmake_push_check_state()` around feature checks
    Enclose
    `CMAKE_EXTRA_INCLUDE_FILES`,
    `CMAKE_REQUIRED_DEFINITIONS`,
    `CMAKE_REQUIRED_FLAGS`,
    `CMAKE_REQUIRED_INCLUDES`,
    `CMAKE_REQUIRED_LIBRARIES`,
    `CMAKE_REQUIRED_LINK_OPTIONS`,
    settings within `cmake_push_check_state()`/`cmake_pop_check_state()`
    calls. It prevents spilling them into other feature checks. It also
    replaces manual resets found in some places (which can have
    the undesired side-effect of destroying values meant for global use.)
    
    Cherry-picked from #15157
    Closes #15251

    Changed files

    • CMake/FindGSS.cmake
    • CMake/OtherTests.cmake
    • CMakeLists.txt
    • lib/CMakeLists.txt
  3. Change #211244

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 10 Oct 2024 19:36:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 447bcea5a4e1d89bb376bab6ef0c6eb7fc4c9ad5

    Comments

    cmake: stop adding dependency headers to global `CMAKE_REQUIRED_INCLUDES`
    It was done for `zlib`, `brotli`, `libpsl`, `libssh2`, `wolfssh`
    (a copy-paste case for `wolfssh`).
    
    Feature detections should not rely by default on dependency headers.
    There is no evidence they do now. If it becomes necessary, headers
    should added for the duration of the feature check.
    
    Ref: 118977f19d2d7e842bdf4424c7cfbc5991781412
    Cherry-picked from #15157
    Closes #15252

    Changed files

    • CMakeLists.txt
  4. Change #211245

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 10 Oct 2024 19:36:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6074e33509ab38993271e0845affea5bfa561c9a

    Comments

    cmake: add comments to feature check options applied globally
    Add comments saying when we want values set in feature check option
    variables to apply to all feature checks, globally. These are currently:
    `ws2_32` and `socket` libraries, and `-D_WIN32_WINNT=` macro.
    
    Also use `list(APPEND ...)` for the libraries to avoid overwriting
    potentially existing values.
    
    Cherry-picked from #15157
    Closes #15253

    Changed files

    • CMake/Macros.cmake
    • CMakeLists.txt