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

Builder curl-ares-solaris10-sparc Build #2299

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionba68eb02fa2d9b138658678c2c1af3716edd7036
Got Revisionba68eb02fa2d9b138658678c2c1af3716edd7036
Changes6 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Dan Fandrich
  2. Stefan Eissing
  3. Viktor Szakats
  4. dependabot[bot]
  5. renovate[bot]

Timing:

StartSat Oct 12 03:40:08 2024
EndSat Oct 12 14:36:01 2024
Elapsed10 hrs, 55 mins, 53 secs

All Changes:

:

  1. Change #211346

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 11 Oct 2024 17:44:45
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8e345057761a8f796403923a96f2c8fd3edca647

    Comments

    cmake: untangle feature detection interdependencies
    - reduce `check_include_file_concat()` use to those headers that either
      depend on a previously detected header, or another header or symbol
      detection depend on it.
    
    - replace `check_symbol_exists()` with `check_function_exists()` for
      functions that are detected with `AC_CHECK_FUNCS()` in `./configure`.
      This makes `setmode()` no longer be detected with MSYS, syncing
      this with `./configure`. Instead `_setmode()` is used now also in
      CMake MSYS builds. This is consistent with Cygwin builds also.
    
    - add comment about which header/symbol detection depends on what
      header. Based on `./configure` mainly.
    
    - form `CURL_TEST_DEFINES` manually, and include only those macros which
      are actually used in `CMake/CurlTests.c`.
    
    - change `curl_internal_test()` to use `CMAKE_REQUIRED_DEFINITIONS`,
      instead of `CMAKE_REQUIRED_FLAGS` to simplify the logic, and to allow
      dropping the latter macro completely.
    
    - drop `windows.h` from header and symbol checks.
    
    - `./configure`: add comment about whether `netinet/in6.h`, `sys/un.h`
      are indeed meant to be included for all detections. There is a chance
      they were added there by accident.
    
    Detection resuls were cross-checked between
    436bbbe7abebf0ee3a2b0bfb3ec5db7ce8c8db4c (master) and
    48ff4694e608ccfdedf7ce5bab2b96d6b2c23cda (this PR), for CI GHA Linux,
    Linux HTTP/3, non-native, macOS and Windows jobs.
    
    Closes #15164

    Changed files

    • CMake/Macros.cmake
    • CMakeLists.txt
    • configure.ac
  2. Change #211348

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 11 Oct 2024 17:57:03
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision dfd36d3ee0702ccd7cd2b784db21d8e88483af74

    Comments

    cmake: apply `WIN32_LEAN_AND_MEAN` to all feature checks
    Enable `WIN32_LEAN_AND_MEAN` for all feature detections on Windows.
    
    (Also drop it from individual detections.)
    
    Cherry-picked from #15164

    Changed files

    • CMake/CurlTests.c
    • CMake/OtherTests.cmake
    • CMakeLists.txt
  3. Change #211351

    Category curl
    Changed by Dan Fandrich <danohnoyoudont@coneharvesters.com>
    Changed at Fri 11 Oct 2024 19:13:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 954177b9da1cbf7175bf6ab7a3b9899fcf49788c

    Comments

    tool_xattr: create the user.creator xattr attribute
    This indicates that the file was created by curl which can help a user
    determine the origin of a file. Like the other attributes, this is only
    enabled with the --xattr option.
    
    Closes #15237

    Changed files

    • docs/cmdline-opts/xattr.md
    • src/tool_xattr.c
    • tests/data/test644
    • tests/data/test687
    • tests/data/test688
  4. Change #211374

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 11 Oct 2024 23:37:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fe8399f066c0fe78018cbb567a0ebb52676bab24

    Comments

    gnutls: use session cache for QUIC
    Add session reuse for QUIC transfers using GnuTLS. This does not include
    support for TLS early data, yet.
    
    Fix check of early data support in common GnuTLS init code to not access
    the filter context, as the struct varies between TCP and QUIC
    connections.
    
    Closes #15265

    Changed files

    • lib/vquic/curl_ngtcp2.c
    • lib/vquic/vquic-tls.c
    • lib/vtls/gtls.c
    • lib/vtls/gtls.h
    • tests/http/test_02_download.py
  5. Change #211375

    Category curl
    Changed by dependabot[bot] <49699333+dependabot[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Fri 11 Oct 2024 23:44:19
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7d53a59292ebd22e2a62fd56fc36c2291f43fec0

    Comments

    CI: bump github/codeql-action, vmactions/omnios-vm and actions/cache
    - bump github/codeql-action from 3.26.10 to 3.26.11
    - bump vmactions/omnios-vm from 1.0.7 to 1.0.8
    - bump actions/cache from 4.0.2 to 4.1.1
    
    Closes #15178
    Closes #15179
    Closes #15244

    Changed files

    • .github/workflows/codeql-analysis.yml
    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
    • .github/workflows/non-native.yml
    • .github/workflows/windows.yml
  6. Change #211377

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Fri 11 Oct 2024 23:53:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ba68eb02fa2d9b138658678c2c1af3716edd7036

    Comments

    CI: update rojopolis/spellcheck, actions/checkout, actions/upload-artifact
    - update rojopolis/spellcheck-github-actions digest to 7ff888c
    - update actions/checkout digest to eef6144
    - update actions/upload-artifact digest to b4b15b8
    
    Closes #15207
    Closes #15184
    Closes #15187

    Changed files

    • .github/workflows/checkdocs.yml
    • .github/workflows/checksrc.yml
    • .github/workflows/codeql-analysis.yml
    • .github/workflows/configure-vs-cmake.yml
    • .github/workflows/curl-for-win.yml
    • .github/workflows/distcheck.yml
    • .github/workflows/hacktoberfest-accepted.yml
    • .github/workflows/http3-linux.yml
    • .github/workflows/linux-old.yml
    • .github/workflows/linux.yml
    • .github/workflows/linux32.yml
    • .github/workflows/macos.yml
    • .github/workflows/non-native.yml
    • .github/workflows/torture.yml
    • .github/workflows/windows.yml