-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (34 loc) · 1.24 KB
/
test_installation_script.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
name: Test installation scripts
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
if: always()
run: |
wget https://raw.githubusercontent.com/ivan-hc/AM/main/INSTALL && chmod a+x ./INSTALL && sudo ./INSTALL
APP=voicevox
am --devmode-enable
am -i $APP
echo "################################################"
echo "##### Content of /opt/$APP"
echo "################################################"
ls /opt
echo "################################################"
echo "##### Content of /opt"
echo "################################################"
ls /opt/$APP
echo "################################################"
echo "##### Content of /usr/local/share/applications"
echo "################################################"
ls /usr/local/share/applications
echo "################################################"
echo "##### Content of /usr/local/bin"
echo "################################################"
ls /usr/local/bin