Skip to content

Commit

Permalink
manylinux_2_28 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ameli committed Feb 3, 2024
1 parent dfd8ee1 commit 52edd69
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 143 deletions.
4 changes: 2 additions & 2 deletions .cirrus.star
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ load("cirrus", "env", "fs", "http")
def main(ctx):

file = ''
# file += fs.read("tools/ci/cirrus_deploy_docker_manylinux2014_aarch64_cuda_12.3.yml")
# file += fs.read("tools/ci/cirrus_deploy_docker_manylinux_2_28_aarch64_cuda_12.3.yml")
file += fs.read("tools/ci/cirrus_deploy_docker_manylinux2014_aarch64_cuda_12.3.yml")
file += fs.read("tools/ci/cirrus_deploy_docker_manylinux_2_28_aarch64_cuda_12.3.yml")

return file
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ on:

jobs:
build_docker:
name: manylinux2014_x86_64_cuda_10.2
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push manylinux2014_x86_64_cuda-10.2
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
push: true
file: ./docker/manylinux2014_x86_64_cuda_10.2/Dockerfile
Expand All @@ -35,7 +35,7 @@ jobs:

test_docker:
needs: [build_docker]
name: manylinux2014_x86_64_cuda_10.2
name: test
runs-on: ubuntu-latest
steps:
- name: Install Snap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ on:

jobs:
build_docker:
name: manylinux2014_x86_64_cuda_11.8
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push manylinux2014_x86_64_cuda-11.8
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
push: true
file: ./docker/manylinux2014_x86_64_cuda_11.8/Dockerfile
Expand All @@ -35,7 +35,7 @@ jobs:

test_docker:
needs: [build_docker]
name: manylinux2014_x86_64_cuda_11.8
name: test
runs-on: ubuntu-latest
steps:
- name: Install Snap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ on:

jobs:
build_docker:
name: manylinux2014_x86_64_cuda_12.0
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push manylinux2014_x86_64_cuda-12.0
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
push: true
file: ./docker/manylinux2014_x86_64_cuda_12.0/Dockerfile
Expand All @@ -35,7 +35,7 @@ jobs:

test_docker:
needs: [build_docker]
name: manylinux2014_x86_64_cuda_12.0
name: test
runs-on: ubuntu-latest
steps:
- name: Install Snap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ on:

jobs:
build_docker:
name: manylinux2014_x86_64_cuda_12.3
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push manylinux2014_x86_64_cuda-12.3
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
push: true
file: ./docker/manylinux2014_x86_64_cuda_12.3/Dockerfile
Expand All @@ -35,7 +35,7 @@ jobs:

test_docker:
needs: [build_docker]
name: manylinux2014_x86_64_cuda_12.3
name: test
runs-on: ubuntu-latest
steps:
- name: Install Snap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ on:

jobs:
build_docker:
name: manylinux_2_28_x86_64_cuda_12.3
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push manylinux_2_28_x86_64_cuda-12.3
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
push: true
file: ./docker/manylinux_2_28_x86_64_cuda_12.3/Dockerfile
Expand All @@ -35,7 +35,7 @@ jobs:

test_docker:
needs: [build_docker]
name: manylinux_2_28_x86_64_cuda_12.3
name: test
runs-on: ubuntu-latest
steps:
- name: Install Snap
Expand Down
Loading

0 comments on commit 52edd69

Please sign in to comment.