From 0814600d3d8a74b72c762629dbb88f6f609296dd Mon Sep 17 00:00:00 2001 From: Andrew Powers-Holmes Date: Tue, 26 Sep 2023 21:36:50 +1000 Subject: [PATCH] oh right that's not a combination which works --- .github/workflows/build-push-base.yaml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-push-base.yaml b/.github/workflows/build-push-base.yaml index 8997738..4b1e412 100644 --- a/.github/workflows/build-push-base.yaml +++ b/.github/workflows/build-push-base.yaml @@ -62,11 +62,20 @@ jobs: max-parallel: 1 matrix: target: ["base"] - torch: ["torch201", "torch210"] - cuda: ["cu118", "cu121"] + cuda: + - cu118 + - cu121 + torch: + - torch201 + - torch210 + exclude: + - target: base + cuda: cu121 + torch: torch201 include: - - cuda: "cu121" - torch: "nightly" + - target: base + cuda: cu121 + torch: nightly steps: - name: Checkout