buildx name issue?

This commit is contained in:
Steven Anderson
2023-08-01 00:47:51 -04:00
parent 6e3fc43d0a
commit a6af66940d
+4 -3
View File
@@ -56,16 +56,17 @@ jobs:
uses: actions/cache@v3
with:
path: ~/.cache/buildx-cache
key: testing
key: buildx-cache
- name: Build Docker Image
run: |
docker buildx build \
--cache-from=type=local,src=/tmp/.buildx-cache \
--cache-to=type=local,dest=/tmp/.buildx-cache \
--platform linux/arm64 \
-t tinygrad:tinygrad -f test/extra/arm64_dockerfile .
-t tinygrad/tinygrad:tg \
-f test/extra/arm64_dockerfile .
- name: Test Ops
run: docker run -e ARM64=1 -e CLANG=1 -e FORWARD_ONLY=1 tinygrad:tinygrad python -m pytest -n=auto test/test_ops.py
run: docker run -e ARM64=1 -e CLANG=1 -e FORWARD_ONLY=1 tinygrad/tinygrad:tg python -m pytest -n=auto test/test_ops.py
testcpuimagenet:
name: CPU and ImageNet to C Tests