Skip to content

Commit

Permalink
Fix actions to build IB wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
chipkent committed May 7, 2024
1 parent 0719fab commit d031a83
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:
build-ib-whl:
name: Build IB WHL
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v1
Expand All @@ -39,7 +39,7 @@ jobs:
build-whl:
name: Build WHL
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@master
- name: Setup Python
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
publish-whl:
name: Publish WHL
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [build-whl]
if: ${{ github.event_name == 'release' && github.event.action == 'released' }}
steps:
Expand All @@ -100,7 +100,7 @@ jobs:

build-sphinx:
name: Build Sphinx
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [build-ib-whl, build-whl]
steps:
- uses: actions/checkout@v1
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:

publish-sphinx:
name: Publish Sphinx
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [build-sphinx]
if: ${{ github.event_name == 'release' && github.event.action == 'released' }}
steps:
Expand All @@ -171,7 +171,7 @@ jobs:

docker-pip:
name: Build and Publish Docker (pip-installed Deephaven)
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [build-ib-whl, build-whl]
permissions:
contents: read
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:

docker-dhserver:
name: Build and Publish Docker (Deephaven server image)
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [build-ib-whl, build-whl]
permissions:
contents: read
Expand Down

0 comments on commit d031a83

Please sign in to comment.