Changes between Version 70 and Version 71 of CI


Ignore:
Timestamp:
Mar 17, 2022, 6:05:11 AM (2 years ago)
Author:
Mariusz Felisiak
Comment:

Update other build to GitHub actions.

Legend:

Unmodified
Added
Removed
Modified
  • CI

    v70 v71  
    1818== Other checks ==
    1919
    20 Some other builders run on all pull requests:
    21 * [https://djangoci.com/job/flake8/ flake8] - runs the equivalent of `flake8` from the root checkout directory and fails if there are any warnings
    22 * [https://djangoci.com/job/docs/ docs] - runs the equivalent of `make spelling` from the docs directory and fails if there are any spelling or sphinx errors.
    23 * [https://djangoci.com/job/isort/ isort] - runs `isort --recursive --check-only .` 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].
    24 * [https://djangoci.com/job/pull-requests-javascript/ pull-requests-javascript] - runs the [https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/javascript/#testing-from-the-command-line JavaScript tests].
    25 * [https://djangoci.com/view/PR%20Builders/job/pull-requests-windows/ pull-requests-windows] - runs with Python 3.9.x (see django-windows below)
     20Some other builders run on all pull requests via GitHub actions:
     21* `black` - runs `black` from the root checkout directory and fails if there are any warnings.
     22* `flake8` - runs `flake8` from the root checkout directory and fails if there are any warnings.
     23* `docs` - runs `make spelling` from the `docs/` directory and fails if there are any spelling or sphinx errors.
     24* `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].
     25* `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
     26* `Windows tests` - runs with Python 3.10.x.
    2627
    2728== Troubleshooting ==
     
    3839
    3940A: `/var/log/jenkins/jenkins.log` may be many gigabytes in size. Remove that file and restart Jenkins with `service jenkins restart`.
    40 
    41 == Notes for other builds ==
    42 
    43 === [https://djangoci.com/job/django-windows/ django-windows] ===
    44 
    45 ||= Python =||= SQLite =||
    46 || 3.6.8 || 3.21.0 ||
    47 || 3.7.9 || 3.31.1 ||
    48 || 3.8.9 || 3.34.0 ||
    49 || 3.9.10 || 3.35.5 ||
    50 || 3.10.2 || 3.35.5 ||
    51 || 3.11.0a6 || 3.37.2 ||
    52 (installed with Windows x86-64 executable installer)
Back to Top