Skip to content

Commit b65dad9

Browse files
improvise some file
1 parent a22bf56 commit b65dad9

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.ci/docker/manywheel/Dockerfile_ppc64le

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use UBI 9.3 as base image
2-
FROM registry.access.redhat.com/ubi9/ubi:9.3
2+
FROM registry.access.redhat.com/ubi9/ubi:9.5
33

44
# Install necessary dependencies
55
RUN dnf install -y \

.github/scripts/ppc64le-build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
# Environment variables
44
PACKAGE_NAME=pytorch
5-
PACKAGE_VERSION=${PACKAGE_VERSION:-v2.4.0}
5+
PACKAGE_VERSION=${PACKAGE_VERSION:-v2.6.0}
66

77
cd /workspace/$PACKAGE_NAME
88

99
# Clean up old artifacts
1010
rm -rf build/ dist/ torch.egg-info/
1111

1212
# Build and install PyTorch wheel
13-
if ! (MAX_JOBS=4 python setup.py bdist_wheel && pip install dist/*.whl); then
13+
if ! (MAX_JOBS=$(nproc) python setup.py bdist_wheel && pip install dist/*.whl); then
1414
echo "------------------$PACKAGE_NAME:install_fails-------------------------------------"
1515
exit 1
1616
fi

.github/workflows/_linux-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
build:
101101
environment: ${{ github.ref == 'refs/heads/main' && 'scribe-protected' || startsWith(github.ref, 'refs/heads/release/') && 'scribe-protected' || contains(github.event.pull_request.labels.*.name, 'ci-scribe') && 'scribe-pr' || '' }}
102102
# Don't run on forked repos
103-
if: github.repository_owner == 'pytorch'
103+
104104
runs-on: ${{ inputs.runner_prefix}}${{ inputs.runner }}
105105
timeout-minutes: 240
106106
outputs:

.github/workflows/ppc64le.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
tags:
8-
- ciflow/ppc64le/*
97
workflow_dispatch:
108

119
concurrency:

0 commit comments

Comments
 (0)