5454 build-platform : " python-build-package"
5555 build-command : " BUILD_AGAINST_ALL_FFMPEG_FROM_S3=1 ${CONDA_RUN} python3 -m build --wheel -vvv --no-isolation"
5656
57- validate-binaries :
58- uses : pytorch/test-infra/.github/workflows/validate-domain-library.yml@main
59- with :
60- package_type : " wheel"
61- os : " macos-arm64"
62- channel : " nightly"
63- repository : " pytorch/torchcodec"
64- smoke_test : " source ./packaging/validate_wheel.sh"
65- install_torch : true
66-
6757 install-and-test :
6858 runs-on : macos-m1-stable
6959 strategy :
@@ -78,61 +68,96 @@ jobs:
7868 with :
7969 name : pytorch_torchcodec__${{ matrix.python-version }}_cpu_
8070 path : pytorch/torchcodec/dist/
81- - name : Setup miniconda
82- uses : pytorch/test-infra/.github/actions/setup-miniconda@macbuildwheel
71+ # # start copying from test-infra/.github/actions/setup-binary-builds/action.yaml, line 84
72+ - name : Setup miniconda (for pytorch_pkg_helpers)
73+ uses :
conda-incubator/[email protected] 8374 with :
75+ miniconda-version : " py39_4.12.0"
8476 python-version : ${{ matrix.python-version }}
85- - name : Update pip
77+ - name : Clean conda environment
78+ shell : bash -l {0}
79+ run : |
80+ set -euxo pipefail
81+ conda info | grep -i 'base environment'
82+ conda clean --all --quiet --yes
83+ - name : Reset channel priority
84+ shell : bash -l {0}
8685 run : |
87- python3 -m pip install --upgrade pip
86+ set -euxo pipefail
87+ conda config --set channel_priority false
88+ - name : Generate file from pytorch_pkg_helpers
89+ working-directory : ${{ inputs.repository }}
90+ shell : bash -l {0}
91+ run : |
92+ set -euxo pipefail
93+ CONDA_ENV="${RUNNER_TEMP}/pytorch_pkg_helpers_${GITHUB_RUN_ID}"
94+ conda create \
95+ --yes --quiet \
96+ --prefix "${CONDA_ENV}" \
97+ "python=3.9"
98+ CONDA_ENV="${CONDA_ENV}"
99+ CONDA_RUN="conda run -p ${CONDA_ENV}"
100+ ${CONDA_RUN} python -m pip install ${GITHUB_WORKSPACE}/test-infra/tools/pkg-helpers
101+ BUILD_ENV_FILE="${RUNNER_TEMP}/build_env_${GITHUB_RUN_ID}"
102+ ${CONDA_RUN} python -m pytorch_pkg_helpers > "${BUILD_ENV_FILE}"
103+ cat "${BUILD_ENV_FILE}"
104+ echo "BUILD_ENV_FILE=${BUILD_ENV_FILE}" >> "${GITHUB_ENV}"
105+ - name : Setup conda environment for build
106+ shell : bash -l {0}
107+ env :
108+ PYTHON_VERSION : ${{ matrix.python-version }}
109+ run : |
110+ set -euxo pipefail
111+ CONDA_ENV="${RUNNER_TEMP}/conda_environment_${GITHUB_RUN_ID}"
112+ if [[ "${PACKAGE_TYPE:-}" == "conda" ]]; then
113+ # For conda package host python version is irrelevant
114+ export PYTHON_VERSION=3.9
115+ export CONDA_BUILD_EXTRA="conda=24.4.0 conda-build=24.3.0 python-libarchive-c=2.9"
116+ else
117+ # For wheel builds we don't need neither conda nor conda-build
118+ export CONDA_BUILD_EXTRA=""
119+ fi
120+
121+ conda create \
122+ --yes --quiet \
123+ --prefix "${CONDA_ENV}" \
124+ "python=${PYTHON_VERSION}" \
125+ cmake=3.26 \
126+ ninja=1.10 \
127+ pkg-config=0.29 \
128+ ${CONDA_BUILD_EXTRA} \
129+ wheel=0.37
130+
131+ echo "CONDA_ENV=${CONDA_ENV}" >> "${GITHUB_ENV}"
132+ echo "CONDA_RUN=conda run -p ${CONDA_ENV}" >> "${GITHUB_ENV}"
133+ # # end copying
134+ - name : Update pip
135+ run : python -m pip install --upgrade pip
88136 - name : Install PyTorch
89137 run : |
90- python3 -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu
138+ ${CONDA_RUN} python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu
91139 - name : Install torchcodec from the wheel
92140 run : |
93141 wheel_path=`find pytorch/torchcodec/dist -type f -name "*.whl"`
94142 echo Installing $wheel_path
95- python3 -m pip install $wheel_path -vvv
96-
143+ ${CONDA_RUN} python -m pip install $wheel_path -vvv
97144 - name : Check out repo
98145 uses : actions/checkout@v3
99146 - name : Install ffmpeg, post build
100147 run : |
101- # Ideally we would have checked for that before installing the wheel,
102- # but we need to checkout the repo to access this file, and we don't
103- # want to checkout the repo before installing the wheel to avoid any
104- # side-effect. It's OK.
105- source packaging/helpers.sh
106-
107- # below was failing, but when I just try to call "ffmpeg -version" that also fails?
108- #assert_ffmpeg_not_installed
109-
110148 conda install "ffmpeg=${{ matrix.ffmpeg-version-for-tests }}" -c conda-forge
111149 ffmpeg -version
112-
113150 - name : Install test dependencies
114151 run : |
115- python3 -m pip install --pre torchvision --index-url https://download.pytorch.org/whl/nightly/cpu
116- # Ideally we would find a way to get those dependencies from pyproject.toml
117- python3 -m pip install numpy pytest pillow
118-
152+ ${CONDA_RUN} python -m pip install --pre torchvision --index-url https://download.pytorch.org/whl/nightly/cpu
153+ ${CONDA_RUN} python -m pip install numpy pytest pillow
119154 - name : Delete the src/ folder just for fun
120155 run : |
121- # The only reason we checked-out the repo is to get access to the
122- # tests. We don't care about the rest. Out of precaution, we delete
123- # the src/ folder to be extra sure that we're running the code from
124- # the installed wheel rather than from the source.
125- # This is just to be extra cautious and very overkill because a)
126- # there's no way the `torchcodec` package from src/ can be found from
127- # the PythonPath: the main point of `src/` is precisely to protect
128- # against that and b) if we ever were to execute code from
129- # `src/torchcodec`, it would fail loudly because the built .so files
130- # aren't present there.
131156 rm -r src/
132157 ls
133158 - name : Smoke test
134159 run : |
135- python3 test/decoders/manual_smoke_test.py
160+ ${CONDA_RUN} python test/decoders/manual_smoke_test.py
136161 - name : Run Python tests
137162 run : |
138- pytest test
163+ ${CONDA_RUN} pytest test
0 commit comments