-
Notifications
You must be signed in to change notification settings - Fork 21
42 lines (38 loc) · 1.32 KB
/
scenarios-ubuntu2404.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Scenarios on Ubuntu 24.04 x86_64
on:
workflow_run:
workflows:
- "Check code style and quality"
- "Testing shell components with BATS"
types:
- completed
workflow_dispatch:
jobs:
scenario-u2404-amd64-containers-dev-ovos-skills-gui:
runs-on:
- self-hosted
steps:
- name: Installer requirements
run: |
sudo apt-get update
sudo apt-get --no-install-recommends install curl git -y
- name: Uninstall existing instance
run: |
sh -c "curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh && chmod +x installer.sh && sudo ./installer.sh -u"
- name: Scenario containers, development, ovos, skills
run: |
mkdir -p ~/.config/ovos-installer
cat <<EOF >~/.config/ovos-installer/scenario.yaml
---
uninstall: false
method: containers
channel: development
profile: ovos
features:
skills: true
extra_skills: true
gui: true
rapsberry_pi_tuning: false
share_telemetry: false
EOF
sh -c "curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh && chmod +x installer.sh && sudo ./installer.sh"