Skip to content

fix typo

2448bda
Select commit
Loading
Failed to load commit list.
Draft

Add group support and improved configuration options for Authentik OIDC #803

fix typo
2448bda
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Dec 18, 2025 in 3m 46s

Build Errored

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #803 Add group support and improved configuration options for Authentik OIDC.
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 Node.js
Operating System Linux (Focal)
Node.js Version 15
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "if": "tag IS blank",
  "sudo": true,
  "node_js": [
    "15"
  ],
  "cache": {
    "directories": [
      "web-src/node_modules"
    ]
  },
  "addons": {
    "chrome": "stable",
    "apt": {
      "update": true,
      "packages": [
        "libu2f-udev"
      ]
    }
  },
  "env": [
    "global={:OWNER=>\"${TRAVIS_REPO_SLUG%/*}\"}=GITHUB_TOKEN=[secure]=DOCKER_USER=[secure]=DOCKER_PASSWORD=[secure]=AWS_ACCESS_KEY_ID=[secure]=AWS_SECRET_ACCESS_KEY=[secure]={:PATH=>\"$HOME/.local/bin:$PATH\"}"
  ],
  "before_install": [
    "sudo apt-get -y install python3-pip python3-setuptools apache2-utils python3-venv",
    "wget https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/116.0.5845.96/linux64/chromedriver-linux64.zip",
    "unzip chromedriver-linux64.zip -d $HOME/.local/bin",
    "mkdir -vp ~/.docker/cli-plugins/",
    "curl --silent -L \"https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64\" > ~/.docker/cli-plugins/docker-buildx",
    "chmod a+x ~/.docker/cli-plugins/docker-buildx"
  ],
  "install": [
    "pip3 install -r requirements.txt",
    "pip3 install pyasn1 --upgrade",
    "pip3 install ldap3 parameterized bcrypt",
    "pip3 install requests --upgrade",
    "pip3 install awscli",
    "cd web-src",
    "npm install",
    "npm install allure-commandline --save-dev",
    "cd ..",
    "python3 -m venv e2e_venv",
    "e2e_venv/bin/pip install -r src/e2e_tests/requirements.txt"
  ],
  "before_script": [
    "cd src",
    "python3 -m unittest discover -s tests -p \"*.py\" -t .",
    "cd ../web-src",
    "npm run test:unit-ci",
    "cd .."
  ],
  "script": [
    "python3 tools/build.py",
    "tools/run_e2e_tests.sh"
  ],
  "after_script": [
    "tools/report_allure.sh"
  ],
  "before_deploy": [
    "if ! [ \"$BEFORE_DEPLOY_RUN\" ]; then export BEFORE_DEPLOY_RUN=1;\n. tools/add_git_tag.sh\nfi"
  ],
  "deploy": [
    {
      "provider": "releases",
      "name": "dev",
      "file": [
        "build/script-server.zip"
      ],
      "prerelease": true,
      "overwrite": true,
      "skip_cleanup": true,
      "on": {
        "branch": [
          "master"
        ]
      },
      "token": "$GITHUB_TOKEN"
    },
    {
      "provider": "releases",
      "name": "$(unzip -qc build/script-server.zip version.txt)",
      "file": [
        "build/script-server.zip"
      ],
      "skip_cleanup": true,
      "on": {
        "branch": [
          "stable"
        ]
      },
      "token": "$GITHUB_TOKEN"
    },
    {
      "provider": "script",
      "script": "tools/deploy_docker.sh",
      "skip_cleanup": true,
      "on": {
        "tags": false,
        "all_branches": true,
        "condition": [
          "$TRAVIS_BRANCH =~ ^stable|master$"
        ]
      }
    }
  ]
}