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 5, 2025
1 parent 117f30e commit 36f1360
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
27 changes: 14 additions & 13 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
push:

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,17 +140,18 @@ jobs:
matrix:
# These archs require an Apple M1 runner: [arm64, universal2]
arch: [x86_64, arm64]
pyver: [cp39, cp310, cp311, cp312, cp313]
# pyver: [cp39, cp310, cp311, cp312, cp313]
pyver: [cp313]

steps:
- name: Checkout repos
uses: actions/checkout@v4

- name: Cache libpq build
uses: actions/cache@v4
with:
path: /tmp/libpq.build
key: libpq-${{ env.LIBPQ_VERSION }}-macos-${{ matrix.arch }}
# - name: Cache libpq build
# uses: actions/cache@v4
# with:
# path: /tmp/libpq.build
# key: libpq-${{ env.LIBPQ_VERSION }}-macos-${{ matrix.arch }}

- name: Build wheels
uses: pypa/cibuildwheel@v2.22.0
Expand Down Expand Up @@ -178,7 +179,7 @@ jobs:

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

strategy:
fail-fast: false
Expand Down Expand Up @@ -252,10 +253,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 36f1360

Please sign in to comment.