File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1- # Workflow to build and test wheels
1+ # Workflow to build and test wheels.
2+ # To work on the wheel building infrastructure on a fork, comment out:
3+ #
4+ # if: github.repository == 'numpy/numpy'
5+ #
6+ # in the get_commit_message job. Be sure to include [cd build] in your commit
7+ # message to trigger the build. All files related to wheel building are located
8+ # at tools/wheels/
29name : Wheel builder
310
411on :
512 schedule :
6- # Nightly build at 1:42 A.M.
13+ # Nightly build at 1:42 UTC
714 - cron : " 42 1 * * *"
815 push :
16+ branches :
17+ - main
18+ - maintenance/**
19+ pull_request :
20+ branches :
21+ - main
22+ - maintenance/**
923 pull_request :
1024 workflow_dispatch :
1125
Original file line number Diff line number Diff line change 1919
2020# Install GFortran
2121if [[ $UNAME == " Darwin" ]]; then
22- # same version of gfortran as the open -libs and numpy-wheel builds
22+ # same version of gfortran as the openblas -libs and numpy-wheel builds
2323 curl -L https://github.com/MacPython/gfortran-install/raw/master/archives/gfortran-4.9.0-Mavericks.dmg -o gfortran.dmg
2424 GFORTRAN_SHA256=$( shasum -a 256 gfortran.dmg)
2525 KNOWN_SHA256=" d2d5ca5ba8332d63bbe23a07201c4a0a5d7e09ee56f0298a96775f928c3c4b30 gfortran.dmg"
Original file line number Diff line number Diff line change 1+ # This script is used by .github/workflows/wheels.yml to build wheels with
2+ # cibuildwheel. It runs the full test suite, checks for lincense inclusion
3+ # and that the openblas version is correct.
14set -xe
25
36PROJECT_DIR=" $1 "
You can’t perform that action at this time.
0 commit comments