Update ci-testing to 0.2.2 #7850
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: | ||
name: ${{ matrix.name }} | ||
runs-on: ubuntu-latest | ||
container: ${{ matrix.container }} | ||
if: github.repository_owner == 'mosaicml' | ||
strategy: | ||
matrix: | ||
include: | ||
- name: cpu-3.11-2.2 | ||
container: mosaicml/pytorch:2.2.1_cpu-python3.11-ubuntu20.04 | ||
markers: not daily and not remote and not gpu and not doctest | ||
pytest_command: coverage run -m pytest | ||
- name: cpu-3.11-2.3 | ||
container: mosaicml/pytorch:2.3.1_cpu-python3.11-ubuntu20.04 | ||
markers: not daily and not remote and not gpu and not doctest | ||
pytest_command: coverage run -m pytest | ||
- name: cpu-3.11-2.4 | ||
container: mosaicml/pytorch:2.4.0_cpu-python3.11-ubuntu20.04 | ||
markers: not daily and not remote and not gpu and not doctest | ||
pytest_command: coverage run -m pytest | ||
- name: cpu-doctest | ||
container: mosaicml/pytorch:2.4.0_cpu-python3.11-ubuntu20.04 | ||
markers: not daily and not remote and not gpu and doctest | ||
pytest_command: coverage run -m pytest tests/test_docs.py | ||
steps: | ||
- name: Run PR CPU Tests | ||
uses: mosaicml/ci-testing/.github/actions/pytest-cpu@53965d9417983a49003182cfca64286b448f80b3 | ||
with: | ||
name: ${{ matrix.name }} | ||
pip_deps: "[all]" | ||
pytest_command: ${{ matrix.pytest_command }} | ||
pytest_markers: ${{ matrix.markers }} | ||
safe_directory: composer | ||
composer_package_name: mosaicml | ||
container: ${{ inputs.container }} | ||
coverage: | ||
uses: ./.github/workflows/coverage.yaml | ||
name: Coverage Results | ||
if: github.repository_owner == 'mosaicml' | ||
runs-on: ubuntu-latest | ||
Check failure on line 50 in .github/workflows/pr-cpu.yaml GitHub Actions / PR CPU testsInvalid workflow file
|
||
container: mosaicml/pytorch:2.4.0_cpu-python3.11-ubuntu20.04 | ||
needs: [pytest-cpu] | ||
with: | ||
download-path: artifacts |