Skip to content

Commit

Permalink
Add devel build for complex nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
robballantyne committed Nov 4, 2024
1 parent 3ec7473 commit 199ee29
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
build:
- {latest: "false", comfyui: "v0.2.6", python: "3.10", pytorch: "2.4.1"}
- {latest: "false", comfyui: "v0.2.7", python: "3.10", pytorch: "2.5.1"}
steps:
-
name: Free Space
Expand Down Expand Up @@ -98,7 +98,8 @@ jobs:
fail-fast: false
matrix:
build:
- {latest: "false", comfyui: "v0.2.6", python: "3.10", pytorch: "2.4.1", cuda: "12.1.1-base"}
- {latest: "false", comfyui: "v0.2.7", python: "3.10", pytorch: "2.5.1", cuda: "12.1.1-base"}
- {latest: "false", comfyui: "v0.2.7", python: "3.10", pytorch: "2.5.1", cuda: "12.1.1-cudnn8-devel"}
steps:
-
name: Free Space
Expand Down Expand Up @@ -162,6 +163,10 @@ jobs:
else
TAGS="${img_path_ghcr}:${base_tag}-${COMFYUI_BUILD_REF}, ${img_path_dhub}:${COMFYUI_BUILD_REF}"
fi
# Tag a devel build
if [[ ${{ matrix.build.cuda }} = *-devel ]]; then
TAGS="${TAGS}, ${img_path_dhub}:${COMFYUI_BUILD_REF}-devel"
fi
echo "TAGS=${TAGS}" >> ${GITHUB_ENV}
-
name: Build and push
Expand All @@ -183,7 +188,7 @@ jobs:
fail-fast: false
matrix:
build:
- {latest: "false", comfyui: "v0.2.6", python: "3.10", pytorch: "2.3.1", rocm: "6.0-runtime"}
- {latest: "false", comfyui: "v0.2.7", python: "3.10", pytorch: "2.3.1", rocm: "6.0-runtime"}
steps:
-
name: Free Space
Expand Down

0 comments on commit 199ee29

Please sign in to comment.