Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump docker/build-push-action from 4.1.1 to 5.0.0 #256

Merged

Bump docker/build-push-action from 4.1.1 to 5.0.0

2cd6490
Select commit
Loading
Failed to load commit list.
Merged

Bump docker/build-push-action from 4.1.1 to 5.0.0 #256

Bump docker/build-push-action from 4.1.1 to 5.0.0
2cd6490
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Sep 14, 2023 in 58s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the dependabot/github_actions/docker/build-push-action-5.0.0 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 OS State
1075.1 2.7 Linux passed
1075.2 3.8 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Python Versions 2.7, 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "python": [
    "2.7",
    "3.8"
  ],
  "cache": {
    "pip": true
  },
  "before_cache": [
    "rm -fv ~/.cache/pip/log/debug.log"
  ],
  "install": [
    "pip install -r requirements.txt",
    "pip install -r requirements-test.txt"
  ],
  "before_script": [
    "export TMPDIR=$PWD/tmp",
    "mkdir $TMPDIR",
    "export PYTHONPATH=$PYTHONPATH:`pwd -P`",
    "cd test"
  ],
  "script": [
    "coverage run --branch --source=ssm,bin -m unittest discover --buffer"
  ],
  "after_success": [
    "coveralls",
    "codecov"
  ]
}