Skip to content

Commit

Permalink
need to use manylinux_2_28_x86_64
Browse files Browse the repository at this point in the history
Signed-off-by: DONNOT Benjamin <[email protected]>
  • Loading branch information
BDonnot committed Nov 28, 2024
1 parent 11c8308 commit 3967757
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ jobs:

cont:
- {
name: manylinux2014_x86_64,
val: quay.io/pypa/manylinux2014_x86_64,
name: manylinux_2_28_x86_64,
val: quay.io/pypa/manylinux_2_28_x86_64,
arch: amd64
}
# - {
Expand All @@ -63,6 +63,7 @@ jobs:
container:
image: ${{matrix.cont.val}}
# does not work if not manylinux2014_x86_64...
# does not work if not manylinux_2_28_x86_64...

steps:
# - name: Set up QEMU
Expand All @@ -72,7 +73,7 @@ jobs:
# platforms: arm64

- name: Checkout sources
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -160,13 +161,13 @@ jobs:
python3 -v -c "from lightsim2grid import LightSimBackend; import grid2op; env = grid2op.make('l2rpn_case14_sandbox', test=True, backend=LightSimBackend())"

- name: Upload wheel
uses: actions/upload-artifact@v2 # v4 broken
uses: actions/upload-artifact@v4 # v4 broken
with:
name: lightsim2grid-wheel-linux-${{ matrix.python.name }}-${{ matrix.cont.name }}
path: wheelhouse/*.whl

- name: Upload source archive
uses: actions/upload-artifact@v2 # v4 broken
uses: actions/upload-artifact@v4 # v4 broken
if: matrix.python.name == 'cp311'
with:
name: lightsim2grid-sources
Expand Down

0 comments on commit 3967757

Please sign in to comment.