Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_hybrid_lang_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
OVOS_USER: 'ovos'
PASSWORD: 'ovos'
HOSTNAME: "raspOVOS"
CONSTRAINTS: "https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt"
CONSTRAINTS: "https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt"
BASE_IMAGE_URL: "${{ needs.resolve-base.outputs.base_image_url }}"
with:
base-image-url: ${{ needs.resolve-base.outputs.base_image_url }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_lite_lang_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
OVOS_USER: 'ovos'
PASSWORD: 'ovos'
HOSTNAME: "raspOVOS"
CONSTRAINTS: "https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt"
CONSTRAINTS: "https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt"
BASE_IMAGE_URL: "${{ needs.resolve-base.outputs.base_image_url }}"
with:
base-image-url: ${{ needs.resolve-base.outputs.base_image_url }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_offline_lang_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
OVOS_USER: 'ovos'
PASSWORD: 'ovos'
HOSTNAME: "raspOVOS"
CONSTRAINTS: "https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt"
CONSTRAINTS: "https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt"
BASE_IMAGE_URL: "${{ needs.resolve-base.outputs.base_image_url }}"
with:
base-image-url: ${{ needs.resolve-base.outputs.base_image_url }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_raspOVOS_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
OVOS_USER: 'ovos'
PASSWORD: 'ovos'
HOSTNAME: "raspOVOS"
CONSTRAINTS: "https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt"
CONSTRAINTS: "https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt"
BASE_IMAGE_URL: "${{ needs.resolve-base.outputs.base_image_url }}"
with:
base-image-url: ${{ needs.resolve-base.outputs.base_image_url }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_raspOVOS_lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
OVOS_USER: 'ovos'
PASSWORD: 'ovos'
HOSTNAME: "raspOVOS"
CONSTRAINTS: "https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt"
CONSTRAINTS: "https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt"
BASE_IMAGE_URL: "${{ github.event.inputs.base_image_url || 'https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2025-05-13/2025-05-13-raspios-bookworm-arm64-lite.img.xz' }}"
with:
base-image-url: ${{ github.event.inputs.base_image_url || 'https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2025-05-13/2025-05-13-raspios-bookworm-arm64-lite.img.xz' }}
Expand Down
4 changes: 3 additions & 1 deletion build_raspOVOS_base_full.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ set -e


: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"
# every uv/pip invocation is constrained, even ones missing an explicit -c
export UV_CONSTRAINT="$CONSTRAINTS" PIP_CONSTRAINT="$CONSTRAINTS"


# Retrieve the GID of the 'ovos' group
Expand Down
4 changes: 3 additions & 1 deletion build_raspOVOS_base_lite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ set -e
: "${OVOS_USER:=ovos}"
: "${PASSWORD:=ovos}"
: "${HOSTNAME:=raspOVOS}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"
# every uv/pip invocation is constrained, even ones missing an explicit -c
export UV_CONSTRAINT="$CONSTRAINTS" PIP_CONSTRAINT="$CONSTRAINTS"


# Rename the default 'pi' user if the current user is not 'pi'.
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_ca.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ set -e
## Intended to run on top of the raspOVOS LITE image

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# start from lite image
bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_ca.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang ca-ES --hybrid --male --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_da.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ set -e
## Intended to run on top of the raspOVOS FULL image

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"


# start from lite image
bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_da.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang da-DK --hybrid --male --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_de.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ set -e
## Intended to run on top of the raspOVOS FULL image

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"


# start from lite image
bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_de.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang de-DE --hybrid --male --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_en.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ set -e
## Intended to run on top of the raspOVOS FULL image

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"


# start from lite image
bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_en.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang en-US --hybrid --male --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_es.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ set -e
## Intended to run on top of the raspOVOS FULL image

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# start from lite image
bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_es.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang es-ES --hybrid --male --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_eu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ set -e
## Intended to run on top of the raspOVOS FULL image

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# start from lite image
bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_eu.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang eu-ES --hybrid --female --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_fr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ set -e
## Intended to run on top of the raspOVOS FULL image

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"


# start from lite image
bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_fr.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang fr-FR --hybrid --male --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_gl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ set -e
## Intended to run on top of the raspOVOS FULL image

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# start from lite image
bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_gl.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang gl-ES --hybrid --female --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_it.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -e
## Intended to run on top of the raspOVOS FULL image

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

## Intended to run on top of the image generated by build_raspOVOS.sh

Expand All @@ -17,6 +17,7 @@ bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_it.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang it-IT --hybrid --female --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_mul.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ set -e
## Intended to run on top of the raspOVOS FULL image

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Copying overlays..."
sudo cp -rv /mounted-github-repo/overlays/en/* /
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_nl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ set -e

## Intended to run on top of the raspOVOS FULL image
: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# start from lite image
bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_nl.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang nl-NL --hybrid --male --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/hybrid/build_raspOVOS_pt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ set -e

## Intended to run on top of the raspOVOS FULL image
: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# start from lite image
bash /mounted-github-repo/lang_builds/lite/build_raspOVOS_pt.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Configuring for target language..."
/home/$OVOS_USER/.venvs/ovos/bin/ovos-config autoconfigure --lang pt-PT --hybrid --male --platform rpi4
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/lite/build_raspOVOS_ca.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ set -e

## Intended to run on top of the image generated by build_raspOVOS.sh
: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"


# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Copying overlays..."
sudo cp -rv /mounted-github-repo/overlays/ca/* /
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/lite/build_raspOVOS_da.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
set -e

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

# TODO - no wake word for "wake up"
#echo "Copying overlays..."
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/lite/build_raspOVOS_de.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
set -e

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Copying overlays..."
sudo cp -rv /mounted-github-repo/overlays/de/* /
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/lite/build_raspOVOS_en.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
set -e

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Copying overlays..."
sudo cp -rv /mounted-github-repo/overlays/en/* /
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/lite/build_raspOVOS_es.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
set -e

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Copying overlays..."
sudo cp -rv /mounted-github-repo/overlays/es/* /
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/lite/build_raspOVOS_eu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
set -e

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Copying overlays..."
sudo cp -rv /mounted-github-repo/overlays/eu/* /
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/lite/build_raspOVOS_fr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
set -e

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

# TODO - no wake word for "wake up"
#echo "Copying overlays..."
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/lite/build_raspOVOS_gl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
set -e

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Copying overlays..."
sudo cp -rv /mounted-github-repo/overlays/gl/* /
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/lite/build_raspOVOS_it.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
set -e

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

## Intended to run on top of the image generated by build_raspOVOS.sh

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Copying overlays..."
sudo cp -rv /mounted-github-repo/overlays/it/* /
Expand Down
3 changes: 2 additions & 1 deletion lang_builds/lite/build_raspOVOS_nl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
set -e

: "${OVOS_USER:=ovos}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/ovos-releases/raw/refs/heads/main/constraints-alpha.txt}"
: "${CONSTRAINTS:=https://github.com/OpenVoiceOS/OpenVoiceOS/raw/refs/heads/main/constraints-alpha.txt}"

# Activate the virtual environment
source /home/$OVOS_USER/.venvs/ovos/bin/activate
export UV_CONSTRAINT="${CONSTRAINTS:-}" PIP_CONSTRAINT="${CONSTRAINTS:-}"

echo "Copying overlays..."
sudo cp -rv /mounted-github-repo/overlays/nl/* /
Expand Down
Loading
Loading