Skip to content

Commit 87eef2d

Browse files
committed
testing macOS runner to use rosetta for jit
1 parent c4ec95e commit 87eef2d

12 files changed

+41
-6
lines changed

.github/workflows/add-issue-header.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Add issue header
22
# Automatically edits an issue's descriptions with a header,
33
# one of:
4+
5+
# Temporarily disabled for JIT-focused development
6+
if: false
7+
48
#
59
# - Bug report
610
# - Crash report

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
- 'main'
1212
- '3.*'
1313

14+
# Temporarily disabled for JIT-focused development
15+
# Remove this if block to re-enable
16+
if: false
17+
1418
permissions:
1519
contents: read
1620

.github/workflows/documentation-links.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Read the Docs PR preview
22
# Automatically edits a pull request's descriptions with a link
33
# to the documentation's preview on Read the Docs.
44

5+
# Temporarily disabled for JIT-focused development
6+
if: false
57
on:
68
pull_request_target:
79
types:

.github/workflows/jit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ jobs:
111111
# directory as the Homebrew Python, which causes the build to fail for macos-13. This line removes
112112
# the symlink to the pre-installed Python so that the Homebrew Python is used instead.
113113
- name: macOS
114+
# also see: rosetta https://github.com/numpy/numpy/pull/29756/files
114115
if: runner.os == 'macOS'
115116
run: |
116117
arch -x86_64 /bin/bash -c '

.github/workflows/lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Lint
22

33
on: [push, pull_request, workflow_dispatch]
44

5+
# Temporarily disabled for JIT-focused development
6+
if: false
7+
58
permissions:
69
contents: read
710

.github/workflows/mypy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
branches:
77
- main
88
pull_request:
9+
10+
# Temporarily disabled for JIT-focused development
11+
if: false
912
paths:
1013
- ".github/workflows/mypy.yml"
1114
- "Lib/_colorize.py"

.github/workflows/new-bugs-announce-notifier.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: new-bugs-announce notifier
22

33
on:
4-
issues:
4+
5+
# Temporarily disabled for JIT-focused development
6+
if: false
7+
issues:
58
types:
69
- opened
710

.github/workflows/project-updater.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: Update GH projects
22

33
on:
4-
issues:
4+
5+
# Temporarily disabled for JIT-focused development
6+
if: false
7+
issues:
58
types:
69
- opened
710
- labeled

.github/workflows/require-pr-label.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: Check labels
22

33
on:
4-
pull_request:
4+
5+
# Temporarily disabled for JIT-focused development
6+
if: false
7+
pull_request:
58
types: [opened, reopened, labeled, unlabeled, synchronize]
69

710
jobs:

.github/workflows/stale.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: Mark stale pull requests
22

33
on:
4-
schedule:
4+
5+
# Temporarily disabled for JIT-focused development
6+
if: false
7+
schedule:
58
- cron: "0 */6 * * *"
69

710
jobs:

0 commit comments

Comments
 (0)