forked from pytorch/vision
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56eb2b6
commit d3b1d3c
Showing
2 changed files
with
57 additions
and
4 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Unit-tests on M1 | ||
on: | ||
pull_request: | ||
paths: | ||
- .github/workflows/test-m1.yml | ||
push: | ||
branches: | ||
- nightly | ||
- main | ||
workflow_dispatch: | ||
jobs: | ||
tests: | ||
name: "Unit-tests on M1" | ||
runs-on: macos-m1 | ||
strategy: | ||
matrix: | ||
py_vers: [ "3.8"] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Install TorchVision | ||
shell: arch -arch arm64 bash {0} | ||
env: | ||
ENV_NAME: conda-env-${{ github.run_id }} | ||
PY_VERS: ${{ matrix.py_vers }} | ||
run: | | ||
. ~/miniconda3/etc/profile.d/conda.sh | ||
# Needed for JPEG library detection as setup.py detects conda presence by running `shlex.which('conda')` | ||
export PATH=~/miniconda3/bin:$PATH | ||
set -ex | ||
conda create -yp ${ENV_NAME} python=${PY_VERS} numpy libpng jpeg scipy | ||
conda run -p ${ENV_NAME} python3 -mpip install torch --extra-index-url=https://download.pytorch.org/whl/nightly | ||
conda run -p ${ENV_NAME} python3 setup.py develop | ||
conda run -p ${ENV_NAME} python3 -mpip install pytest pytest-mock av | ||
- name: Run tests | ||
shell: arch -arch arm64 bash {0} | ||
env: | ||
ENV_NAME: conda-env-${{ github.run_id }} | ||
PY_VERS: ${{ matrix.py_vers }} | ||
run: | | ||
. ~/miniconda3/etc/profile.d/conda.sh | ||
set -ex | ||
conda run -p ${ENV_NAME} --no-capture-output python3 -u -mpytest -v --tb=long --durations 20 | ||
conda env remove -p ${ENV_NAME} |