Skip to content

cmake: Introduce platform-independent targets

d5b373f
Select commit
Loading
Failed to load commit list.
Open

new tool zpckey for UV key origins #43

cmake: Introduce platform-independent targets
d5b373f
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed May 17, 2026 in 5s

Build Failed

The build failed. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #43 new tool zpckey for UV key origins.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Compiler OS State
247.1 gcc Linux failed
247.2 clang Linux failed

Build Configuration

Build Option Setting
Language C
Operating System Linux (Noble)
Compiler Versions gcc, clang
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "noble",
  "arch": [
    "s390x"
  ],
  "sudo": true,
  "compiler": [
    "gcc",
    "clang"
  ],
  "before_install": [
    "sudo apt-get update -qq",
    "sudo apt-get install -y cmake libjson-c-dev"
  ],
  "before_script": [
    "git clone https://github.com/openssl/openssl.git",
    "pushd openssl",
    "git checkout --track origin/openssl-3.5",
    "./config -w 2> >(tee)",
    "make -s -j4 2> >(tee)",
    "export OPENSSL_DIR=$(pwd)",
    "export PATH=${OPENSSL_DIR}/apps/:${PATH}",
    "export LD_LIBRARY_PATH=${OPENSSL_DIR}:${LD_LIBRARY_PATH}",
    "popd"
  ],
  "script": [
    "set -o pipefail",
    "cmake -B build -S . -DCMAKE_INCLUDE_PATH=${OPENSSL_DIR} -DCMAKE_LIBRARY_PATH=${OPENSSL_DIR} 2> >(tee)",
    "cmake --build build --target zpc 2> >(tee)"
  ]
}