Linux installer matrix CI #834
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: Scenario virtualenv, alpha, ovos, skills | |
| run: | | |
| mkdir -p ~/.config/ovos-installer | |
| cat <<EOF >~/.config/ovos-installer/scenario.yaml | |
| --- | |
| uninstall: false | |
| method: virtualenv | |
| channel: alpha | |
| profile: ovos | |
| features: | |
| skills: true | |
| extra_skills: true | |
| gui: true | |
| rapsberry_pi_tuning: false | |
| share_telemetry: false | |
| share_usage_telemetry: false | |
| EOF | |
| curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh | |
| chmod +x installer.sh | |
| sudo ./installer.sh | |
| - name: Uninstall existing instance | |
| run: | | |
| curl -s https://raw.githubusercontent.com/OpenVoiceOS/ovos-installer/main/installer.sh -o installer.sh | |
| chmod +x installer.sh | |
| sudo ./installer.sh -u |