Skip to content

Commit 3a99f4b

Browse files
authored
Add workflow for manywheel cpu-cxx11-abi (#1198)
1 parent f504a35 commit 3a99f4b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build-manywheel-images.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ on:
77
paths:
88
- .github/workflows/build-manywheel-images.yml
99
- manywheel/Dockerfile
10+
- manywheel/Dockerfile_cxx11-abi
1011
- manywheel/build_docker.sh
1112
- 'common/*'
1213
pull_request:
1314
paths:
1415
- .github/workflows/build-manywheel-images.yml
1516
- manywheel/Dockerfile
17+
- manywheel/Dockerfile_cxx11-abi
1618
- 'common/*'
1719
- manywheel/build_docker.sh
1820

@@ -75,3 +77,18 @@ jobs:
7577
- name: Build Docker Image
7678
run: |
7779
manywheel/build_docker.sh
80+
build-docker-cpu-cxx11-abi:
81+
runs-on: ubuntu-18.04
82+
env:
83+
GPU_ARCH_TYPE: cpu-cxx11-abi
84+
steps:
85+
- name: Checkout PyTorch
86+
uses: actions/checkout@v2
87+
- name: Authenticate if WITH_PUSH
88+
run: |
89+
if [[ "${WITH_PUSH}" == true ]]; then
90+
echo "${DOCKER_TOKEN}" | docker login -u "${DOCKER_ID}" --password-stdin
91+
fi
92+
- name: Build Docker Image
93+
run: |
94+
manywheel/build_docker.sh

0 commit comments

Comments
 (0)