Skip to content

Commit

Permalink
chore: update python workflow to use updated ubuntu version
Browse files Browse the repository at this point in the history
  • Loading branch information
reez committed Sep 24, 2024
1 parent 78a243a commit e06abce
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on: [workflow_dispatch]
jobs:
build-manylinux2014-x86_64-wheels:
name: "Build Manylinux 2014 x86_64 wheel"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
defaults:
run:
working-directory: bdk-python
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:

publish-pypi:
name: "Publish on PyPI"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
defaults:
run:
working-directory: bdk-python
Expand Down
20 changes: 18 additions & 2 deletions .github/workflows/test-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ on:
jobs:
build-manylinux2014-x86_64-wheels:
name: "Build and test Manylinux 2014 x86_64 wheels"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
defaults:
run:
working-directory: bdk-python
container:
image: quay.io/pypa/manylinux2014_x86_64
image: quay.io/pypa/manylinux_2_28_x86_64
env:
PLAT: manylinux2014_x86_64
PYBIN: "/opt/python/${{ matrix.python }}/bin"
Expand All @@ -34,6 +34,10 @@ jobs:
- cp39-cp39
- cp310-cp310
steps:
- name: "Setup Node.js"
uses: actions/setup-node@v3
with:
node-version: '18'
- name: "Checkout"
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -75,6 +79,10 @@ jobs:
- "3.9"
- "3.10"
steps:
- name: "Setup Node.js"
uses: actions/setup-node@v3
with:
node-version: '18'
- name: "Checkout"
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -118,6 +126,10 @@ jobs:
- "3.9"
- "3.10"
steps:
- name: "Setup Node.js"
uses: actions/setup-node@v3
with:
node-version: '18'
- name: "Checkout"
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -159,6 +171,10 @@ jobs:
- "3.9"
- "3.10"
steps:
- name: "Setup Node.js"
uses: actions/setup-node@v3
with:
node-version: '18'
- name: "Checkout"
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit e06abce

Please sign in to comment.