Update certificates for UTs #476
Merged
Travis CI / Travis CI - Pull Request
failed
Oct 30, 2023 in 1h 2m 0s
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 #476 Update certificates for UTs.
Any changes that have been made to the lmr branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | C++ |
Operating System | Linux (Jammy) |
Compiler Version | gcc |
Build Configuration
{
"language": "cpp",
"os": [
"linux"
],
"dist": "jammy",
"compiler": [
"gcc"
],
"services": [
"docker"
],
"jobs": {
"include": [
{
"stage": "check",
"if": "tag IS NOT present",
"addons": {
"apt": {
"packages": [
"libuv1-dev",
"libboost-all-dev",
"rapidjson-dev",
"autoconf",
"openjdk-11-jdk-headless",
"maven",
"lcov",
"cmake"
]
}
},
"before_install": [
"pip install --user cpp-coveralls"
],
"install": [
"bash ./.travis/install-dependencies.sh"
],
"before_script": [
"sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6';"
],
"env": [
{
"TEST_SUITE": "travis-build.sh"
}
],
"script": [
"bash ./.travis/$TEST_SUITE"
],
"after_success": [
"bash ./.travis/coveralls-deploy.sh"
]
},
{
"stage": "build-images",
"if": "tag IS present",
"install": [
"pip install pyyaml pytz"
],
"before_script": [
"export DOCKER_BUILDKIT=1",
"export RELEASE_TAG=6.0.3.1",
"export UPSTREAM_ID=81c2369",
"export EXPECTED_TAG_PREFIX=${RELEASE_TAG}"
],
"script": [
"echo \"Skip running UTs\"",
"git clone http://www.github.com/noironetworks/cicd -b main /tmp/cicd",
"/tmp/cicd/travis/check-git-tag.sh; RETURN_CODE=$? ; if [ $RETURN_CODE -eq 140 ]; then travis_terminate 0; elif [ $RETURN_CODE -ne 0 ]; then travis_terminate $RETURN_CODE; fi",
"/tmp/cicd/travis/build-push-opflex-images.sh || travis_terminate 1"
]
}
]
}
}
Loading