Skip to content

Commit

Permalink
use manylinux-x86_64 name for consistency with manylinux-aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-J-Ward committed Aug 23, 2024
1 parent 93bbc68 commit c03e9ef
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
name: dist-macos-aarch64
path: target/wheels/*

build-manylinux:
build-manylinux-x86_64:
needs: [generate-license]
name: Manylinux
runs-on: ubuntu-latest
Expand All @@ -193,7 +193,7 @@ jobs:
- name: Archive wheels
uses: actions/upload-artifact@v4
with:
name: dist-manylinux
name: dist-manylinux-x86_64
path: target/wheels/*

build-manylinux-aarch64:
Expand Down Expand Up @@ -246,18 +246,22 @@ jobs:
manylinux: auto
rustup-components: rust-std rustfmt
args: --release --sdist --out dist --features protoc,substrait
- name: Archive wheels
uses: actions/upload-artifact@v4
with:
name: dist-sdist
path: target/wheels/*
- name: Assert sdist build does not generate wheels
run: |
if [ "$(ls -A target/wheels)" ]; then
echo "Error: Sdist build generated wheels"
exit 1
else
echo "Directory is clean"
fi
shell: bash

merge-build-artifacts:
runs-on: ubuntu-latest
needs:
- build-python-mac-win
- build-macos-aarch64
- build-manylinux
- build-manylinux-x86_64
- build-manylinux-aarch64
- build-sdist
steps:
Expand Down

0 comments on commit c03e9ef

Please sign in to comment.