[WIP] Error logging callback #4286
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR CPU tests | |
on: | |
pull_request: | |
workflow_dispatch: | |
# Cancel old runs when a new commit is pushed to the same branch if not on main or dev | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' }} | |
jobs: | |
pytest-cpu: | |
uses: ./.github/workflows/pytest-cpu.yaml | |
strategy: | |
matrix: | |
include: | |
- name: 'cpu-3.10-1.13' | |
container: mosaicml/pytorch:1.13.1_cpu-python3.10-ubuntu20.04 | |
markers: 'not daily and not remote and not gpu and not vision and not doctest' | |
pytest_command: 'coverage run -m pytest' | |
composer_package_name: 'mosaicml' | |
- name: 'cpu-3.10-2.0' | |
container: mosaicml/pytorch:2.0.1_cpu-python3.10-ubuntu20.04 | |
markers: 'not daily and not remote and not gpu and not vision and not doctest' | |
pytest_command: 'coverage run -m pytest' | |
composer_package_name: 'mosaicml' | |
- name: 'cpu-3.10-2.1' | |
container: mosaicml/pytorch:2.1.0_cpu-python3.10-ubuntu20.04 | |
markers: 'not daily and not remote and not gpu and not vision and not doctest' | |
pytest_command: 'coverage run -m pytest' | |
composer_package_name: 'mosaicml' | |
# - name: 'cpu-3.10-2.2' | |
# container: mosaicml/pytorch:2.2.0_cu121-nightly20231213-python3.10-ubuntu20.04 | |
# markers: 'not daily and not remote and not gpu and not vision and not doctest' | |
# pytest_command: 'coverage run -m pytest' | |
# composer_package_name: 'mosaicml' | |
- name: 'cpu-vision' | |
container: mosaicml/pytorch_vision:1.13.1_cpu-python3.10-ubuntu20.04 | |
markers: 'not daily and not remote and not gpu and vision and not doctest' | |
pytest_command: 'coverage run -m pytest' | |
composer_package_name: 'mosaicml' | |
- name: 'cpu-doctest' | |
container: mosaicml/pytorch:1.13.1_cpu-python3.10-ubuntu20.04 | |
markers: 'not daily and not remote and not gpu and not vision and doctest' | |
pytest_command: 'coverage run -m pytest tests/test_docs.py' | |
composer_package_name: 'mosaicml' | |
name: ${{ matrix.name }} | |
if: github.repository_owner == 'mosaicml' | |
with: | |
composer_package_name: ${{ matrix.composer_package_name }} | |
container: ${{ matrix.container }} | |
name: ${{ matrix.name }} | |
pytest-command: ${{ matrix.pytest_command }} | |
pytest-markers: ${{ matrix.markers }} | |
coverage: | |
uses: ./.github/workflows/coverage.yaml | |
name: Coverage Results | |
if: github.repository_owner == 'mosaicml' | |
needs: [ pytest-cpu ] | |
with: | |
download-path: artifacts |