Skip to content

Commit

Permalink
Do not build ROCm devel - Insufficient space on GH runners
Browse files Browse the repository at this point in the history
  • Loading branch information
robballantyne committed Aug 30, 2024
1 parent 436c251 commit afa8d6f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ jobs:
matrix:
build:
- {latest: "false", selkies: "1.6.2", rocm: "6.0-runtime"}
- {latest: "false", selkies: "1.6.2", rocm: "6.0-devel"}
steps:
-
name: Free Space
Expand Down
2 changes: 1 addition & 1 deletion build/COPY_ROOT_0/opt/ai-dock/bin/supervisor-coturn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ trap cleanup EXIT

SERVICE_NAME="Coturn"
LISTEN_PORT="${COTURN_PORT_HOST:-3478}"
COTURN_LISTEN_ADDRESS=${COTURN_LISTEN_ADDRESS:-${EXTERNAL_IP_ADDRESS}}
COTURN_LISTEN_ADDRESS=${COTURN_LISTEN_ADDRESS:-$(/opt/ai-dock/bin/external-ip-address)}

function cleanup() {
fuser -k -SIGTERM ${LISTEN_PORT}/tcp > /dev/null 2>&1 &
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function start() {
selkies-gstreamer-resize ${DISPLAY_SIZEW}x${DISPLAY_SIZEH}

if [[ ${ENABLE_COTURN,,} == "true" ]]; then
export SELKIES_TURN_HOST="${SELKIES_TURN_HOST:-${EXTERNAL_IP_ADDRESS}}"
export SELKIES_TURN_HOST="${SELKIES_TURN_HOST:-$(/opt/ai-dock/bin/external-ip-address)}"
export SELKIES_TURN_PORT="${COTURN_PORT_HOST:-3478}"
export SELKIES_TURN_USERNAME="${COTURN_USER:-user}"
export SELKIES_TURN_PASSWORD="${COTURN_PASSWORD:-password}"
Expand Down

0 comments on commit afa8d6f

Please sign in to comment.