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

Use LDAP API #254

Open
wants to merge 11 commits into
base: main
Choose a base branch
from

Merge branch 'main' into use-ldap-api

e2d57cd
Select commit
Loading
Failed to load commit list.
Open

Use LDAP API #254

Merge branch 'main' into use-ldap-api
e2d57cd
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Dec 15, 2023 in 7m 47s

Build Failed

The build failed. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #254 Use LDAP API.
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
939.1 Checking overall syntax (groovy, yaml, python) passed

Stage 2: Test

This stage failed.

Job State
939.2 Test on rockylinux9 failed
939.3 Test on Debian Bookworm failed

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"
}