[CI] skip docs-only jobs take #2 (#8853)

* restore skip

* Revert "Remove deprecated `evalutate_during_training` (#8852)"

This reverts commit 5530299096.

* check that pipeline.git.base_revision is defined before proceeding

* Revert "Revert "Remove deprecated `evalutate_during_training` (#8852)""

This reverts commit dfec84db3fdce1079f01f1bc8dfaf21db2ccaba1.

* check that pipeline.git.base_revision is defined before proceeding

* doc only

* doc + code

* restore

* restore

* typo
This commit is contained in:
Stas Bekman
2020-12-01 10:15:25 -08:00
committed by GitHub
parent a947386cee
commit 21db560df3

View File

@@ -11,6 +11,9 @@ commands:
- run: - run:
name: docs-only changes skip check name: docs-only changes skip check
command: | command: |
# pipeline.git.base_revision is not always defined, so only proceed if all external vars are defined
if test -n "<< pipeline.git.base_revision >>" && test -n "<< pipeline.git.revision >>"
then
if git diff --name-only << pipeline.git.base_revision >>...<< pipeline.git.revision >> | egrep -qv '\.(md|rst)$' if git diff --name-only << pipeline.git.base_revision >>...<< pipeline.git.revision >> | egrep -qv '\.(md|rst)$'
then then
echo "Non-docs were modified in this PR, proceeding normally" echo "Non-docs were modified in this PR, proceeding normally"
@@ -18,6 +21,9 @@ commands:
echo "Only docs were modified in this PR, quitting this job" echo "Only docs were modified in this PR, quitting this job"
circleci step halt circleci step halt
fi fi
else
echo "Can't perform skipping check w/o base_revision defined, continuing the job"
fi
# TPU REFERENCES # TPU REFERENCES
references: references:
@@ -88,7 +94,7 @@ jobs:
parallelism: 1 parallelism: 1
steps: steps:
- checkout - checkout
# - skip-job-on-doc-only-changes - skip-job-on-doc-only-changes
- restore_cache: - restore_cache:
keys: keys:
- v0.4-torch_and_tf-{{ checksum "setup.py" }} - v0.4-torch_and_tf-{{ checksum "setup.py" }}
@@ -115,7 +121,7 @@ jobs:
parallelism: 1 parallelism: 1
steps: steps:
- checkout - checkout
# - skip-job-on-doc-only-changes - skip-job-on-doc-only-changes
- restore_cache: - restore_cache:
keys: keys:
- v0.4-torch-{{ checksum "setup.py" }} - v0.4-torch-{{ checksum "setup.py" }}
@@ -142,7 +148,7 @@ jobs:
parallelism: 1 parallelism: 1
steps: steps:
- checkout - checkout
# - skip-job-on-doc-only-changes - skip-job-on-doc-only-changes
- restore_cache: - restore_cache:
keys: keys:
- v0.4-tf-{{ checksum "setup.py" }} - v0.4-tf-{{ checksum "setup.py" }}
@@ -169,7 +175,7 @@ jobs:
parallelism: 1 parallelism: 1
steps: steps:
- checkout - checkout
# - skip-job-on-doc-only-changes - skip-job-on-doc-only-changes
- restore_cache: - restore_cache:
keys: keys:
- v0.4-flax-{{ checksum "setup.py" }} - v0.4-flax-{{ checksum "setup.py" }}
@@ -196,7 +202,7 @@ jobs:
parallelism: 1 parallelism: 1
steps: steps:
- checkout - checkout
# - skip-job-on-doc-only-changes - skip-job-on-doc-only-changes
- restore_cache: - restore_cache:
keys: keys:
- v0.4-torch-{{ checksum "setup.py" }} - v0.4-torch-{{ checksum "setup.py" }}
@@ -223,7 +229,7 @@ jobs:
parallelism: 1 parallelism: 1
steps: steps:
- checkout - checkout
# - skip-job-on-doc-only-changes - skip-job-on-doc-only-changes
- restore_cache: - restore_cache:
keys: keys:
- v0.4-tf-{{ checksum "setup.py" }} - v0.4-tf-{{ checksum "setup.py" }}
@@ -248,7 +254,7 @@ jobs:
RUN_CUSTOM_TOKENIZERS: yes RUN_CUSTOM_TOKENIZERS: yes
steps: steps:
- checkout - checkout
# - skip-job-on-doc-only-changes - skip-job-on-doc-only-changes
- restore_cache: - restore_cache:
keys: keys:
- v0.4-custom_tokenizers-{{ checksum "setup.py" }} - v0.4-custom_tokenizers-{{ checksum "setup.py" }}
@@ -276,7 +282,7 @@ jobs:
parallelism: 1 parallelism: 1
steps: steps:
- checkout - checkout
# - skip-job-on-doc-only-changes - skip-job-on-doc-only-changes
- restore_cache: - restore_cache:
keys: keys:
- v0.4-torch_examples-{{ checksum "setup.py" }} - v0.4-torch_examples-{{ checksum "setup.py" }}