Skip to content

Commit 7dd2b98

Browse files
authored
test: add linux/arm64 to test matrix
1 parent b216221 commit 7dd2b98

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,18 @@ jobs:
1111
matrix:
1212
python-version: ["3.8", "3.11"]
1313
cuda-version: ["11.8"]
14+
platform: ["linux/amd64", "linux/arm64"]
1415

1516
steps:
1617
- name: Checkout
1718
uses: actions/checkout@v3
1819

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+
1926
- name: Login to Docker Hub
2027
uses: docker/login-action@v1
2128
with:
@@ -29,6 +36,7 @@ jobs:
2936
"PYTHON_VERSION=${{ matrix.python-version }}"
3037
"CUDA_VERSION=${{ matrix.cuda-version }}"
3138
context: .
39+
platforms: ${{ matrix.platform }}
3240
tags: radixai/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
3341

3442
- name: Test Docker image

0 commit comments

Comments
 (0)