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

Add rpms needed for ipsec #12477

Merged
merged 1 commit into from
Feb 7, 2024

Add and enable ipsec service

16da3de
Select commit
Failed to load commit list.
Merged

Add rpms needed for ipsec #12477

Add and enable ipsec service
16da3de
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Feb 7, 2024 in 1m 38s

Build Passed

The build passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #12477 Add rpms needed for ipsec.
Any changes that have been made to the master 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 Python
Operating System Linux (Xenial)
Python Version 3.7
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": false,
  "cache": {
    "pip": true
  },
  "before_cache": [
    "rm ~/.cache/pip/log/debug.log"
  ],
  "python": [
    "3.7"
  ],
  "before_install": [
    "python -m pip install --upgrade virtualenv"
  ],
  "install": [
    "pip install --upgrade pip",
    "pip install tox-travis"
  ],
  "script": [
    "tox"
  ],
  "after_failure": [
    "echo \"Here's a list of installed Python packages:\"",
    "pip list --format=columns",
    "echo Dumping logs, because tests failed to succeed",
    "for log in `ls .tox/*/log/*.log`\ndo\n  echo Outputting $log\n  cat $log\ndone\n",
    "pip_debug_log=/home/travis/.cache/pip/log/debug.log",
    "echo Outputting pip debug log from $pip_debug_log",
    "cat $pip_debug_log"
  ]
}