Skip to content

Do not trigger system testing on PRs that don't need it #2059

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Reduce unnecessary workflow triggering

6042434
Select commit
Loading
Failed to load commit list.
Open

Do not trigger system testing on PRs that don't need it #2059

Reduce unnecessary workflow triggering
6042434
Select commit
Loading
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
Travis CI / Travis CI - Pull Request succeeded Apr 28, 2024 in 31m 32s

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 #2059 [DO NOT MERGE] Do not trigger system testing on PRs that don't need it.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has five jobs, running in parallel.

Job Python OS State
7884.1 3.12 Linux passed
7884.2 3.8 Linux passed
7884.3 3.9 Linux passed
7884.4 3.10 Linux passed
7884.5 3.11 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Focal)
Build Configuration
{
  "group": "travis_latest",
  "language": "python",
  "dist": "focal",
  "matrix": {
    "include": [
      {
        "python": "3.12"
      },
      {
        "python": "3.8"
      },
      {
        "python": "3.9"
      },
      {
        "python": "3.10"
      },
      {
        "python": "3.11"
      }
    ]
  },
  "install": [
    "travis_retry sudo apt-get -y install python3-pip",
    "travis_retry pip install --upgrade pip",
    "travis_retry pip install --upgrade tox==3.* tox-travis"
  ],
  "before_script": [
    "python tools/ensure_codegen_up_to_date.py"
  ],
  "script": [
    "tox -c tox-travis.ini"
  ],
  "after_success": [
    "travis_retry curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import",
    "travis_retry curl -Os https://uploader.codecov.io/latest/linux/codecov",
    "travis_retry curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM",
    "travis_retry curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig",
    "travis_retry gpgv codecov.SHA256SUM.sig codecov.SHA256SUM",
    "travis_retry shasum -a 256 -c codecov.SHA256SUM",
    "travis_retry chmod +x codecov",
    "travis_retry ./codecov --flags codegenunittests --file codegen.xml",
    "travis_retry ./codecov --flags nifakeunittests --file nifakeunittest.xml",
    "travis_retry ./codecov --flags nidcpowerunittests --file nidcpowerunittest.xml",
    "travis_retry ./codecov --flags nidigitalunittests --file nidigitalunittest.xml",
    "travis_retry ./codecov --flags nimodinstunittests --file nimodinstunittest.xml",
    "travis_retry ./codecov --flags niscopeunittests --file niscopeunittest.xml",
    "travis_retry ./codecov --flags nitclkunittests --file nitclkunittest.xml"
  ]
}