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

doc(FAQ): How to read logs #1739

Merged
merged 2 commits into from
Jun 1, 2024

Update FAQ.md

d830668
Select commit
Loading
Failed to load commit list.
Merged

doc(FAQ): How to read logs #1739

Update FAQ.md
d830668
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch cancelled May 29, 2024 in 23s

Build Canceled

The build canceled, just like the previous build.

Details

This is a normal build for the doc/faqreadlogs branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has three jobs, running in parallel.

Job Python ENV OS State
1719.1 3.8 PYTHONUNBUFFERED=1 Linux canceled
1719.2 3.12 PYTHONUNBUFFERED=1 Linux canceled
1719.3 3.8 PYTHONUNBUFFERED=1 Linux canceled

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Python Versions 3.8, 3.9, 3.10, 3.11, 3.12
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "arch": [
    "amd64",
    "ppc64le"
  ],
  "python": [
    "3.8",
    "3.9",
    "3.10",
    "3.11",
    "3.12"
  ],
  "addons": {
    "ssh_known_hosts": [
      "localhost"
    ]
  },
  "env": [
    "jobs={:PYTHONUNBUFFERED=>\"1\"}"
  ],
  "before_install": [
    "sudo rm -f /etc/apt/sources.list.d/mongodb.list",
    "sudo apt-get -qq update",
    "sudo apt-get install -y sshfs screen util-linux"
  ],
  "jobs": {
    "exclude": [
      {
        "python": "3.9"
      },
      {
        "python": "3.10"
      },
      {
        "python": "3.11"
      },
      {
        "arch": "ppc64le",
        "python": "3.12"
      }
    ]
  },
  "install": [
    "pip install pylint coveralls pyfakefs keyring",
    "if [ \"$TRAVIS_ARCH\" != \"ppc64le\" ] ; then pip install pyqt6 dbus-python; fi",
    "ssh-keygen -b 2048 -t rsa -f /home/travis/.ssh/id_rsa -N \"\"",
    "cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys",
    "eval `ssh-agent -s`"
  ],
  "script": [
    "python -m compileall common common/test common/plugins qt qt/test qt/plugins",
    "cd common",
    "./configure  --python=python3",
    "make unittest-v",
    "cd ..",
    "cd qt",
    "./configure --python=python3",
    "make",
    "if [ \"$TRAVIS_ARCH\" != \"ppc64le\" ] ; then pytest ; else echo -e \"\\033[1;35mOn ppc64le no Qt testing because PyQt is impossible to install.\\033[0m\" ; fi"
  ],
  "after_success": [
    "coverage combine",
    "coveralls"
  ]
}