Skip to content

Commit

Permalink
[internal] Rename build wheels steps to include architecture (#14861)
Browse files Browse the repository at this point in the history
To prepare for #12183.
  • Loading branch information
asherf authored Mar 21, 2022
1 parent f9cd1f4 commit d001d3e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -299,13 +299,13 @@ jobs:
python-version:
- '3.7'
timeout-minutes: 40
build_wheels_linux:
build_wheels_linux_x86_64:
container: quay.io/pypa/manylinux2014_x86_64:latest
env:
PANTS_REMOTE_CACHE_READ: 'false'
PANTS_REMOTE_CACHE_WRITE: 'false'
if: ${{ github.repository_owner == 'pantsbuild' }}
name: Build wheels and fs_util (Linux)
name: Build wheels and fs_util (Linux x86/64)
runs-on: ubuntu-20.04
steps:
- name: Check out code
Expand Down Expand Up @@ -380,12 +380,12 @@ jobs:
name: Deploy to S3
run: ./build-support/bin/deploy_to_s3.py
timeout-minutes: 65
build_wheels_macos:
build_wheels_macos_x86_64:
env:
PANTS_REMOTE_CACHE_READ: 'false'
PANTS_REMOTE_CACHE_WRITE: 'false'
if: ${{ github.repository_owner == 'pantsbuild' }}
name: Build wheels and fs_util (macOS)
name: Build wheels and fs_util (macOS x86/64)
runs-on: macos-10.15
steps:
- name: Check out code
Expand Down
8 changes: 4 additions & 4 deletions build-support/bin/generate_github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,8 @@ def build_steps(*, is_macos: bool) -> list[Step]:
}
jobs.update(
{
"build_wheels_linux": {
"name": "Build wheels and fs_util (Linux)",
"build_wheels_linux_x86_64": {
"name": "Build wheels and fs_util (Linux x86/64)",
"runs-on": LINUX_VERSION,
"container": "quay.io/pypa/manylinux2014_x86_64:latest",
"timeout-minutes": 65,
Expand All @@ -529,8 +529,8 @@ def build_steps(*, is_macos: bool) -> list[Step]:
deploy_to_s3_step,
],
},
"build_wheels_macos": {
"name": "Build wheels and fs_util (macOS)",
"build_wheels_macos_x86_64": {
"name": "Build wheels and fs_util (macOS x86/64)",
"runs-on": MACOS_VERSION,
"timeout-minutes": 80,
"env": DISABLE_REMOTE_CACHE_ENV,
Expand Down

0 comments on commit d001d3e

Please sign in to comment.