Skip to content

Commit f250f31

Browse files
committed
Disable all workflows except linuxbrew, for testing purposes
1 parent 31fc261 commit f250f31

5 files changed

Lines changed: 7 additions & 16 deletions

File tree

.github/workflows/linuxbrew.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
13+
python: ["3.14"]
1414

1515
env:
1616
# For some unknown reason, linuxbrew tries to use "gcc-11" by default, which doesn't exist.

.github/workflows/macosx.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: macOS
2-
on: [push, pull_request]
2+
on:
3+
workflow_dispatch:
34
concurrency:
45
group: ${{ github.workflow }}-${{ github.ref }}
56
cancel-in-progress: ${{ github.ref_name != 'master' }}

.github/workflows/manylinux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: manylinux
2-
on: [push, pull_request]
2+
on:
3+
workflow_dispatch:
34
concurrency:
45
group: ${{ github.workflow }}-${{ github.ref }}
56
cancel-in-progress: ${{ github.ref_name != 'master' }}

.github/workflows/sdist.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: sdist
2-
on: [push, pull_request]
2+
on:
3+
workflow_dispatch:
34
concurrency:
45
group: ${{ github.workflow }}-${{ github.ref }}
56
cancel-in-progress: ${{ github.ref_name != 'master' }}

.github/workflows/wheels.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
11
name: Wheel build
22

33
on:
4-
release:
5-
types: [created]
6-
schedule:
7-
# ┌───────────── minute (0 - 59)
8-
# │ ┌───────────── hour (0 - 23)
9-
# │ │ ┌───────────── day of the month (1 - 31)
10-
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
11-
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
12-
# │ │ │ │ │
13-
- cron: "42 3 * * 4"
14-
push:
15-
pull_request:
164
workflow_dispatch:
175

186
concurrency:

0 commit comments

Comments
 (0)