summaryrefslogtreecommitdiff
path: root/doc/source/dev
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2022-08-17 15:22:18 -0600
committerGitHub <noreply@github.com>2022-08-17 15:22:18 -0600
commit0ca460da16787e3613d20c6cb46236a0b5bd3bbf (patch)
tree382257e618f1dd5593875b6f69dd4b22709572b3 /doc/source/dev
parent18416ae0d9f0a605505cc6eb3dafdb6afc4df4c4 (diff)
parentb3f01f14506322a4a0984042e5957efc3e1e119c (diff)
downloadnumpy-0ca460da16787e3613d20c6cb46236a0b5bd3bbf.tar.gz
Merge pull request #21879 from tupui/skip_azp_circle
CI: skip azp and circleCI logic
Diffstat (limited to 'doc/source/dev')
-rw-r--r--doc/source/dev/development_workflow.rst19
1 files changed, 8 insertions, 11 deletions
diff --git a/doc/source/dev/development_workflow.rst b/doc/source/dev/development_workflow.rst
index a7c915b42..b49a96d7a 100644
--- a/doc/source/dev/development_workflow.rst
+++ b/doc/source/dev/development_workflow.rst
@@ -197,17 +197,14 @@ platforms to building the docs. In some cases you already know that CI isn't
needed (or not all of it), for example if you work on CI config files, text in
the README, or other files that aren't involved in regular build, test or docs
sequences. In such cases you may explicitly skip CI by including one of these
-fragments in your commit message::
-
- ``[ci skip]``: skip as much CI as possible (not all jobs can be skipped)
- ``[skip github]``: skip GitHub Actions "build numpy and run tests" jobs
- ``[skip travis]``: skip TravisCI jobs
- ``[skip azurepipelines]``: skip Azure jobs
-
-*Note*: unfortunately not all CI systems implement this feature well, or at all.
-CircleCI supports ``ci skip`` but has no command to skip only CircleCI.
-Azure chooses to still run jobs with skip commands on PRs, the jobs only get
-skipped on merging to master.
+fragments in your commit message:
+
+* ``[skip ci]``: skip all CI
+* ``[skip github]``: skip GitHub Actions "build numpy and run tests" jobs
+* ``[skip actions]``: skip all GitHub Actions
+* ``[skip travis]``: skip TravisCI jobs
+* ``[skip azp]``: skip Azure jobs
+* ``[skip circle]``: skip CircleCI jobs
Test building wheels
~~~~~~~~~~~~~~~~~~~~