Update makefile to remove Artifactory references #144
Merged
Travis CI / Travis CI - Branch
succeeded
Dec 21, 2023 in 5m 17s
Build Passed
The build passed, just like the previous build.
Details
This is a normal build for the update_failing_build_logic branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has two jobs, running in parallel.
Job | Python | ENV | OS | State |
---|---|---|---|---|
897.1 | 3.8.18 | TOXENV=py38 | Linux | passed |
897.2 | 3.9.18 | TOXENV=py39 | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | Python |
Operating System | Linux (Focal) |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "focal",
"git": {
"depth": false
},
"services": [
"docker"
],
"addons": {
"ssh_known_hosts": [
"github.ibm.com"
]
},
"deploy": [
{
"provider": "script",
"script": "set -e; make docker-build-images docker-test-images docker-quality-images deploy",
"on": {
"all_branches": true,
"condition": [
"$TOXENV = py38"
],
"repo": "IBM/detect-secrets"
}
}
],
"before_install": [
"echo -e \"machine github.com\\n login $GH_ACCESS_TOKEN\" >> ~/.netrc",
"echo -e \"machine github.ibm.com\\n login $GHE_ACCESS_TOKEN\" >> ~/.netrc"
],
"install": [
"pip install \"certifi>=2022.12.07\" \"setuptools>=65.5.1\" tox pipenv"
],
"script": [
"make setup-trivy && make setup-cosign && make trivy-scan-python-vulnerabilities && make test"
],
"cache": {
"directories": [
"$HOME/.cache/pre-commit",
"$HOME/.cache/trivy",
"$HOME/.cache/cosign"
]
},
"jobs": {
"include": [
{
"env": [
{
"TOXENV": "py38"
}
],
"python": "3.8.18"
},
{
"env": [
{
"TOXENV": "py39"
}
],
"python": "3.9.18"
}
]
}
}
Loading