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

Format Debug Log #184

Merged
merged 1 commit into from
Jan 5, 2024

Format Debug Log

793dad2
Select commit
Loading
Failed to load commit list.
Merged

Format Debug Log #184

Format Debug Log
793dad2
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jan 5, 2024 in 3m 35s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #184 Format Debug Log.
Any changes that have been made to the 1.0 branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in parallel.

Job Python ENV OS State
298.1 2.7 DIST_REPO="f5-icontrol-rest-dist" Linux passed
298.2 3.4 DIST_REPO="f5-icontrol-rest-dist" Linux passed
298.3 3.5 DIST_REPO="f5-icontrol-rest-dist" Linux passed
298.4 DIST_REPO="f5-icontrol-rest-dist" Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": true,
  "env": [
    "global={:DIST_REPO=>\"\\\"f5-icontrol-rest-dist\\\"\"}"
  ],
  "services": [
    "docker"
  ],
  "before_install": [
    "git config --global user.email \"OpenStack_TravisCI@f5.com\"",
    "git config --global user.name \"Travis F5 Openstack\""
  ],
  "install": [
    "pip install -r requirements.test.txt",
    "pip install -r requirements.docs.txt"
  ],
  "script": [
    "tox",
    "if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then ${DIST_REPO}/scripts/package.sh \"redhat\" \"7\"; fi",
    "if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then ${DIST_REPO}/scripts/package.sh \"ubuntu\" \"14.04\"; fi",
    "if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then sudo chown -R travis:travis ${DIST_REPO}/rpms/build; fi",
    "if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then sudo chown  travis:travis ${DIST_REPO}/deb_dist/*.deb; fi"
  ],
  "before_deploy": [
    "PKG_VERSION=$(python -c \"import icontrol; print(icontrol.__version__)\")"
  ],
  "deploy": [
    {
      "provider": "releases",
      "file": [
        "${DIST_REPO}/rpms/build/f5-icontrol-rest-${PKG_VERSION}-1.el7.noarch.rpm",
        "${DIST_REPO}/deb_dist/python-f5-icontrol-rest_${PKG_VERSION}-1_1404_all.deb"
      ],
      "skip_cleanup": true,
      "overwrite": true,
      "on": {
        "repo": "F5Networks/f5-icontrol-rest-python",
        "tags": true,
        "python": "2.7"
      },
      "token": {
        "secure": "Nc4NrVZqv5L0Ss8UQh0Glx8AKkL1NfClcvmOrg6kyj+jqnZYbqVbWN7Od8K9tp9pD613mQ86RL8vDV25wxEQY/Z0MidKuWqmM7PkriCe6ZXYhO2qB/jTouWr6ucv2xz4CZE2HRV3gJMKT6zFzKUZD2zUcojoIfzOM1KK2ggohEzkXXzpCtXFbVRB5B5WpMJ5+MQKBKGAUIF2RCiMiVRkqIfEg9dVziNNsSfXOjq5zelEIx3ePj/9/1OCrcjIpdp1SDc7soM79JDcmTyUkeUiczrZyXqw9972wI3zYDTAK/cDyPv/DzHF+N4jLOlI8j1lx8u/tgukAN98x2PqLhkxnezz1wGX17UDyQEvhCXs94+dhB20QulVfjCz+t2xaFozsC5z2C22ogRNIWtIg65x/Uj8YyO1AqNG8gmEYHErlQQGUcdyWhoApvAEF7BGFRZzlyWRBpxu3m4LKPRhahF1g3qOqVt3SHNG2uF4zJOJf+8MBG07A0QNhWCfre5sszsxUaiaePjUrABAgRijU2MPnOwaEzfnPoFH6j40CrpYhVQRn1v97e8Nk547gErIaAoATeJ4XDhAOXWj8qZrN9XBRtnu0AqVL59JtpeORAT5PWjM2bU5gUYk6CuBofdVOVo7qBWFL0nwu8hUneD5ur6t2v6TinktW4zheNNHQUFsH/4="
      }
    },
    {
      "provider": "pypi",
      "password": "$PYPI_PASSWORD",
      "on": {
        "all_branches": true,
        "tags": true,
        "python": "2.7"
      },
      "username": "$PYPI_USER"
    }
  ],
  "notifications": {
    "slack": [
      {
        "rooms": [
          "f5openstackdev:$SLACK_PROJECT_TOKEN",
          "f5openstackdev:$SLACK_BUILD_STATUS_TOKEN"
        ],
        "on_success": "change",
        "on_failure": "always"
      }
    ]
  },
  "jobs": {
    "include": [
      {
        "python": "2.7",
        "env": [
          {
            "TOXENV": "py27-unit"
          }
        ]
      },
      {
        "python": "3.4",
        "env": [
          {
            "TOXENV": "py34-unit"
          }
        ]
      },
      {
        "python": "3.5",
        "env": [
          {
            "TOXENV": "py35-unit"
          }
        ]
      },
      {
        "env": [
          {
            "TOXENV": "flake"
          }
        ]
      }
    ]
  }
}