Add fix for high CVE #1577
Draft
Add fix for high CVE #1577
Travis CI / Travis CI - Branch
succeeded
Sep 25, 2025 in 13m 38s
Build Passed
The build passed.
Details
This is a normal build for the libexpat-cve-fix branch. You should be able to reproduce it by checking out the branch locally.
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 | Go |
| Operating System | Linux (Jammy) |
Build Configuration
{
"language": "go",
"os": [
"linux"
],
"dist": "jammy",
"services": [
"docker"
],
"env": [
"global={:DEFAULT_BRANCH=>\"master\"}={:GOPROXY=>\"https://proxy.golang.org,https://goproxy.io,direct\"}"
],
"jobs": {
"include": [
{
"stage": "check",
"if": "tag IS NOT present",
"sudo": false,
"go": "1.25.0",
"before_install": [
"go install github.com/mattn/goveralls@v0.0.12"
],
"install": [
"export PATH=$PATH:$GOPATH/bin"
],
"script": [
"make goinstall",
"make check >& /tmp/check.log"
],
"after_failure": [
"grep -C 200 FAIL /tmp/check.log",
"tail -200 /tmp/check.log"
],
"after_success": [
"tail -200 /tmp/check.log",
"$GOPATH/bin/goveralls -coverprofile=covprof-ipam,covprof-index,covprof-apicapi,covprof-hostagent,covprof-controller,covprof-gbpserver -service=travis-pro"
]
},
{
"stage": "build-images",
"if": "tag IS present",
"before_install": [
"mkdir -vp ~/.docker/cli-plugins/",
"curl --silent -L \"https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-amd64\" > ~/.docker/cli-plugins/docker-buildx",
"chmod a+x ~/.docker/cli-plugins/docker-buildx"
],
"install": [
"pip install PyYAML",
"pip install pytz"
],
"go": "1.25.0",
"go_import_path": "github.com/noironetworks/aci-containers",
"before_script": [
"export DOCKER_BUILDKIT=1",
"export UPSTREAM_ID=81c2369"
],
"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-aci-containers-images.sh || travis_terminate 1"
]
}
]
}
}
Loading