Skip to content

Refactor GPU CI

Refactor GPU CI #21

Workflow file for this run

name: "Package macOS"
on:
workflow_dispatch:
pull_request:
paths-ignore:
- "docs/**"
- "examples/**"
- "*.md"
branches:
- main
push:
paths-ignore:
- "docs/**"
- "examples/**"
- "*.md"
branches:
- main
jobs:
#############################################################################
# Conda
#############################################################################
conda-cpu-py312:
name: "Conda (Python 3.12)"
uses: ./.github/workflows/conda_cpu_build.yml
with:
os: macos-latest
python-version: "3.12"
artifact: conda-cpu-py312
conda-cpu-py311:
name: "Conda (Python 3.11)"
uses: ./.github/workflows/conda_cpu_build.yml
with:
os: macos-latest
python-version: "3.11"
artifact: conda-cpu-py311
conda-cpu-py310:
name: "Conda (Python 3.10)"
uses: ./.github/workflows/conda_cpu_build.yml
with:
os: macos-latest
python-version: "3.10"
artifact: conda-cpu-py310
conda-cpu-py310-test:
name: "Conda (Python 3.10)"
needs: [ "conda-py310" ]

Check failure on line 50 in .github/workflows/package_macos.yml

View workflow run for this annotation

GitHub Actions / Package macOS

Invalid workflow file

The workflow is not valid. .github/workflows/package_macos.yml (Line: 50, Col: 14): Job 'conda-cpu-py310-test' depends on unknown job 'conda-py310'.
uses: ./.github/workflows/conda_cpu_test.yml
with:
os: macos-latest
python-version: "3.10"
artifact: conda-cpu-py310