Changes between Version 97 and Version 98 of CI


Ignore:
Timestamp:
Sep 7, 2026, 9:26:23 PM (5 days ago)
Author:
Jacob Walls
Comment:

update CI job info, add Q&A for upgrading jenkins plugins

Legend:

Unmodified
Added
Removed
Modified
  • CI

    v97 v98  
    2424
    2525Some other builders run on all pull requests via GitHub actions:
    26 * `black` - runs `black` from the root checkout directory and fails if there are any warnings.
    27 * `flake8` - runs `flake8` from the root checkout directory and fails if there are any warnings.
    28 * `docs` - runs `make spelling` from the `docs/` directory and fails if there are any spelling or sphinx errors.
    29 * `isort` - runs `isort --check --diff .` from the root checkout directory and fails if any imports aren't [https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/coding-style/#imports sorted properly].
     26* `Linters` - runs `black`, `flake8`, `isort`, `zizmor`, and `biome`
     27* `docs` - runs `make lint`, `make black`, and `make spelling` from the `docs/` directory and fails if there are any formatting, spelling, or sphinx errors.
    3028* `JavaScript tests` - runs [https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/javascript/#testing-from-the-command-line npm test] and fails if there are any errors
    3129* `Windows tests` - runs with Python 3.14.x.
    32 * `Selenium tests` - runs the Selenium tests for any PR with the `selenium` label applied.
     30* `Playwright tests` - runs the Playwright tests for any PR with the `playwright` label applied.
    3331* `Benchmark` - Runs the [https://github.com/django/django-asv django-asv] benchmarks for any PR with the `benchmark` label applied. (The Benchmarks take some time, and will run on each subsequent push, but can be disabled by removing the label until you're ready to run them again.)
    3432* `Geodjango Tests` - Runs PostGIS tests using more recent versions of geospatial libraries such as `GEOS` for any PR with the `geodjango` label applied.
     
    4745
    4846A: `/var/log/jenkins/jenkins.log` may be many gigabytes in size. Remove that file and restart Jenkins with `service jenkins restart`.
     47
     48Q: What could explain the build failing with Java library errors?
     49
     50A: Check if any plugins need to be updated to a more recent version.
Back to Top