version: 2 jobs: build_py3_torch_and_tf: working_directory: ~/transformers docker: - image: circleci/python:3.5 resource_class: xlarge parallelism: 1 steps: - checkout - run: sudo pip install torch - run: sudo pip install tensorflow - run: sudo pip install --progress-bar off . - run: sudo pip install pytest codecov pytest-cov - run: sudo pip install tensorboardX scikit-learn - run: python -m pytest -sv ./transformers/tests/ --cov - run: codecov build_py3_torch: working_directory: ~/transformers docker: - image: circleci/python:3.5 resource_class: xlarge parallelism: 1 steps: - checkout - run: sudo pip install torch - run: sudo pip install --progress-bar off . - run: sudo pip install pytest codecov pytest-cov - run: sudo pip install tensorboardX scikit-learn - run: python -m pytest -sv ./transformers/tests/ --cov - run: python -m pytest -sv ./examples/ - run: codecov build_py3_tf: working_directory: ~/transformers docker: - image: circleci/python:3.5 resource_class: xlarge parallelism: 1 steps: - checkout - run: sudo pip install tensorflow - run: sudo pip install --progress-bar off . - run: sudo pip install pytest codecov pytest-cov - run: sudo pip install tensorboardX scikit-learn - run: python -m pytest -sv ./transformers/tests/ --cov - run: codecov build_py3_custom_tokenizers: working_directory: ~/transformers docker: - image: circleci/python:3.5 steps: - checkout - run: sudo pip install --progress-bar off . - run: sudo pip install pytest - run: sudo pip install mecab-python3 - run: RUN_CUSTOM_TOKENIZERS=1 python -m pytest -sv ./transformers/tests/tokenization_bert_japanese_test.py deploy_doc: working_directory: ~/transformers docker: - image: circleci/python:3.5 steps: - add_ssh_keys: fingerprints: - "5b:7a:95:18:07:8c:aa:76:4c:60:35:88:ad:60:56:71" - checkout - run: sudo pip install --progress-bar off -r docs/requirements.txt - run: sudo pip install --progress-bar off -r requirements.txt - run: ./.circleci/deploy.sh repository_consistency: working_directory: ~/transformers docker: - image: circleci/python:3.5 resource_class: small parallelism: 1 steps: - checkout - run: sudo pip install requests - run: python ./utils/link_tester.py workflow_filters: &workflow_filters filters: branches: only: - master workflows: version: 2 build_and_test: jobs: - repository_consistency - build_py3_custom_tokenizers - build_py3_torch_and_tf - build_py3_torch - build_py3_tf - deploy_doc: *workflow_filters