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

Set enableCookies and enableCircularRedirects #384

Merged
merged 4 commits into from
Dec 13, 2023

Add test for circular redirects and cookies on selected repos

15b4805
Select commit
Loading
Failed to load commit list.
Merged

Set enableCookies and enableCircularRedirects #384

Add test for circular redirects and cookies on selected repos
15b4805
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Dec 13, 2023 in 12m 30s

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 #384 Set enableCookies and enableCircularRedirects.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in two sequential stages.

Stage 1: Lint

This stage passed.

Job State
926.1 Checking overall syntax (groovy, yaml, python) passed

Stage 2: Test

This stage passed.

Job State
926.2 Test on rockylinux9 passed
926.3 Test on Debian Bookworm passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Python Version 3.10
Build Configuration
{
  "dist": "jammy",
  "sudo": "required",
  "language": "python",
  "python": "3.10",
  "branches": {
    "only": [
      "main"
    ]
  },
  "cache": {
    "pip": true,
    "directories": [
      "molecule/.nexus-downloads/"
    ]
  },
  "services": [
    "docker"
  ],
  "before_install": [
    "cd ..",
    "mv nexus3-oss $TRAVIS_BUILD_DIR",
    "cd ..",
    "rmdir ansible-ThoTeam",
    "cd $TRAVIS_BUILD_DIR"
  ],
  "install": [
    "pip install --upgrade pip",
    "pip install --upgrade --upgrade-strategy eager -r requirements.txt"
  ],
  "stages": [
    "lint",
    "test"
  ],
  "jobs": {
    "include": [
      {
        "stage": "lint",
        "name": "Checking overall syntax (groovy, yaml, python)",
        "script": "./tests/test_groovySyntax.sh\nyamllint .\nansible-lint\nflake8"
      },
      {
        "stage": "test",
        "name": "Test on rockylinux9",
        "script": "molecule test -s default-rockylinux9"
      },
      {
        "stage": "test",
        "name": "Test on Debian Bookworm",
        "script": "molecule test -s default-debian_bookworm"
      }
    ]
  },
  "notifications": {
    "webhooks": "https://galaxy.ansible.com/api/v1/notifications/"
  },
  "global_env": [
    "TRAVIS_BUILD_DIR=/home/travis/build/ansible-thoteam.nexus3-oss"
  ],
  "os": "linux",
  "group": "stable"
}