We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b216221 commit 7dd2b98Copy full SHA for 7dd2b98
.github/workflows/test.yml
@@ -11,11 +11,18 @@ jobs:
11
matrix:
12
python-version: ["3.8", "3.11"]
13
cuda-version: ["11.8"]
14
+ platform: ["linux/amd64", "linux/arm64"]
15
16
steps:
17
- name: Checkout
18
uses: actions/checkout@v3
19
20
+ - name: Set up QEMU
21
+ uses: docker/setup-qemu-action@v2
22
+
23
+ - name: Set up Docker Buildx
24
+ uses: docker/setup-buildx-action@v2
25
26
- name: Login to Docker Hub
27
uses: docker/login-action@v1
28
with:
@@ -29,6 +36,7 @@ jobs:
29
36
"PYTHON_VERSION=${{ matrix.python-version }}"
30
37
"CUDA_VERSION=${{ matrix.cuda-version }}"
31
38
context: .
39
+ platforms: ${{ matrix.platform }}
32
40
tags: radixai/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
33
41
34
42
- name: Test Docker image
0 commit comments