Skip to content

Commit 8ce8489

Browse files
committed
CLN Address comments
1 parent c9abce5 commit 8ce8489

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,25 @@
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/
29
name: Wheel builder
310

411
on:
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

tools/wheels/cibw_before_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fi
1919

2020
# Install GFortran
2121
if [[ $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"

tools/wheels/cibw_test_command.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
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.
14
set -xe
25

36
PROJECT_DIR="$1"

0 commit comments

Comments
 (0)