Skip to content

Commit

Permalink
tmp: NOMERGE disable workflow of no interest
Browse files Browse the repository at this point in the history
  • Loading branch information
dvarrazzo committed Jan 4, 2025
1 parent d43e5fe commit 24f29fd
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Build packages
on:
- workflow_dispatch
# on:
# - workflow_dispatch

env:
PIP_BREAK_SYSTEM_PACKAGES: "1"
Expand All @@ -10,7 +10,7 @@ env:

jobs:
sdist: # {{{
if: true
if: false
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
# }}}

linux: # {{{
if: true
if: false

strategy:
fail-fast: false
Expand Down Expand Up @@ -140,18 +140,18 @@ jobs:
matrix:
# These archs require an Apple M1 runner: [arm64, universal2]
arch: [x86_64]
pyver: [cp39, cp310, cp311, cp312, cp313]
pyver: [cp39] #, cp310, cp311, cp312, cp313]
macver: ["13"]
include:
- arch: arm64
pyver: cp310
macver: "14"
- arch: arm64
pyver: cp311
macver: "14"
- arch: arm64
pyver: cp312
macver: "14"
# - arch: arm64
# pyver: cp310
# macver: "14"
# - arch: arm64
# pyver: cp311
# macver: "14"
# - arch: arm64
# pyver: cp312
# macver: "14"
- arch: arm64
pyver: cp313
macver: "14"
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:

windows: # {{{
runs-on: windows-latest
if: true
if: false

strategy:
fail-fast: false
Expand Down Expand Up @@ -266,10 +266,10 @@ jobs:
merge: # {{{
runs-on: ubuntu-latest
needs:
- sdist
- linux
# - sdist
# - linux
- macos
- windows
# - windows
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
linux:
runs-on: ubuntu-latest
if: true
if: false

strategy:
fail-fast: false
Expand Down

0 comments on commit 24f29fd

Please sign in to comment.