-
-
Notifications
You must be signed in to change notification settings - Fork 59
244 lines (236 loc) · 11.4 KB
/
bobtests_linux.yml
File metadata and controls
244 lines (236 loc) · 11.4 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
name: Linux Bob Tests
on:
push:
paths-ignore:
- 'README.md'
- '.github/workflows/android.yml'
pull_request:
paths-ignore:
- 'README.md'
- '.github/workflows/android.yml'
workflow_dispatch:
inputs:
version:
description: dummy
default: dummy
jobs:
android-linux-test_bob:
runs-on: ubuntu-latest
strategy:
matrix:
api-level: [29]
permissions:
contents: write
if: ${{ true }}
steps:
- uses: actions/checkout@v6
- name: install deps
run: |
sudo apt-get update && \
sudo DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
fonts-freefont-otf \
adb \
ghostscript \
imagemagick \
ca-certificates
- name: check imagemagick
run: |
convert -list font || echo "NO ERR"
- name: Install Java
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: |
17
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: test java1
run: |
pwd
type java
echo "===========1========="
java -version || exit 0
echo "===========2========="
- name: download tester
shell: bash
run: |
curl -L https://github.com/zoff99/java_tox_tester/archive/refs/heads/master.zip -o master.zip
unzip master.zip
ls -al java_tox_tester-master/
java -version
javac -version
- name: start tester
shell: bash
run: |
cd java_tox_tester-master/ ; ls -al ; ./do_wait_for_app.sh > /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/android-refimpl-app/tester.log 2>&1 &
- name: check disk space
shell: bash
run: |
df -h
du -hs /home/runner/work
cd /home/runner/work
du -s *|sort -n
- name: install deps for fake webcam
run: |
sudo apt-get install v4l2loopback-utils ffmpeg
sudo apt-get install linux-modules-extra-$(uname -r)
- name: start fake webcam
run: |
pwd
git clone https://github.com/whokilleddb/Fake-Stream
cd Fake-Stream/
ls -al
pwd
sudo modprobe v4l2loopback card_label="My Fake Webcam" video_nr=10 devices=1 exclusive_caps=1
sleep 2
ls -al /dev/video*
sudo ffmpeg -stream_loop -1 -re -i ./test.mp4 -vcodec rawvideo -threads 0 -f v4l2 /dev/video10 &
sleep 10
sudo chmod a+rw /dev/video*
ls -al /dev/video*
- name: android test
timeout-minutes: 40
continue-on-error: true
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
profile: Nexus 6
arch: x86_64
ndk: 21.0.6113669
cmake: 3.10.2.4988404
force-avd-creation: false
emulator-options: -no-snapshot-save -skin 1080x2220 -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back virtualscene -camera-front webcam0
disable-animations: true
disable-spellchecker: true
pre-emulator-launch-script: |
echo "Running pre emulator launch script. Printing the working directory now:"
pwd
script: |
df -h
rm -f /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/android-refimpl-app/app/witness.gradle
sed -i -e 's#a.getWindow().addFlags#//a.getWindow().addFlagsXXYY#' /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/android-refimpl-app/app/src/main/java/com/zoffcc/applications/trifa/CallingActivity.java
printf 'dependencyVerification {\nverify = [\n]\n}\n' > /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/android-refimpl-app/app/witness.gradle
java -version
cd android-refimpl-app ; ./gradlew assemble
adb logcat -c || echo "NOERR"
adb logcat > /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/android-refimpl-app/logcat.txt &
echo 'sleep 100' > /home/runner/a.sh
echo 'adb shell settings put secure immersive_mode_confirmations confirmed' >> /home/runner/a.sh
echo 'sleep 40' >> /home/runner/a.sh
echo 'adb shell settings put secure immersive_mode_confirmations confirmed' >> /home/runner/a.sh
echo 'sleep 10' >> /home/runner/a.sh
echo 'adb shell settings put secure immersive_mode_confirmations confirmed' >> /home/runner/a.sh
echo 'sleep 10' >> /home/runner/a.sh
echo 'adb shell settings put secure immersive_mode_confirmations confirmed' >> /home/runner/a.sh
echo 'sleep 30' >> /home/runner/a.sh
echo 'adb shell settings put secure immersive_mode_confirmations confirmed' >> /home/runner/a.sh
cat /home/runner/a.sh
ls -al /home/runner/a.sh
chmod u+rx /home/runner/a.sh
bash /home/runner/a.sh &
echo "+++++++++++++++++++++++++++"
adb devices
echo "+++++++++++++++++++++++++++"
adb shell settings get secure immersive_mode_confirmations
echo "+++++++++++++++++++++++++++"
adb shell settings put secure immersive_mode_confirmations confirmed
echo "+++++++++++++++++++++++++++"
adb shell settings get secure immersive_mode_confirmations
echo "+++++++++++++++++++++++++++"
cd android-refimpl-app ; ./gradlew app:connectedAndroidTest -Pandroid.testInstrumentationRunnerArguments.class=com.zoffcc.applications.trifa.JavaFriendTester || echo "NOERR"
cat /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/android-refimpl-app/logcat.txt
echo "================"
echo "================"
cat /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/android-refimpl-app/tester.log
echo "================"
echo "================"
pwd
adb pull /sdcard/googletest/test_outputfiles .
ls -al /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/test_outputfiles/
echo "---------------"
ls -al /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/test_outputfiles/*.png
- name: make promo screenshots 1
run: |
pwd
git clone https://github.com/zoff99/android_promo_screens
cd ./android_promo_screens/
./test.sh "TRIfA" "Message your Friends and Family securely and with ease." /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/test_outputfiles/test_004b.png
cp -av output.png promo_02.png
mv -v promo_02.png ../promo_${{ matrix.api-level }}_02.png
./test.sh "TRIfA" "Send Messages and Files or just Call your Friends." /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/test_outputfiles/test_005.png
cp -av output.png promo_03.png
mv -v promo_03.png ../promo_${{ matrix.api-level }}_03.png
- name: make promo screenshots 2
run: |
cd ./android_promo_screens/
./test2.sh "TRIfA" "Message your Friends and Family securely and with ease." /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/images/101.png
cp -av output.png promo_101.png
mv -v promo_101.png ../promo_${{ matrix.api-level }}_101.png
./test2.sh "TRIfA" "Send Messages and Files or just Call your Friends." /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/images/102.png
cp -av output.png promo_102.png
mv -v promo_102.png ../promo_${{ matrix.api-level }}_102.png
- name: Upload to nightly release
uses: ncipollo/release-action@v1
if: github.event_name == 'push' && github.ref == 'refs/heads/zoff99/dev003'
with:
allowUpdates: true
tag: nightly
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
prerelease: true
replacesArtifacts: true
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "promo_${{ matrix.api-level }}_02.png,promo_${{ matrix.api-level }}_03.png,promo_${{ matrix.api-level }}_101.png,promo_${{ matrix.api-level }}_102.png"
- name: put datetime on screenshots
run: |
cd /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/
git rev-parse --short HEAD
c="$(git rev-parse --short HEAD)"
cd /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/test_outputfiles/
ls -al
d="$(date '+%Y-%m-%d %H:%M:%S')"
convert test_004b.png -gravity SouthEast -pointsize 62 -fill white -annotate +30+30 "$d ($c)" test_004b_time.png
convert test_005.png -gravity SouthEast -pointsize 62 -fill white -annotate +30+30 "$d ($c)" test_005_time.png
convert test_007.png -gravity SouthEast -pointsize 62 -fill white -annotate +30+30 "$d ($c)" test_007_time.png
convert test_099.png -gravity SouthEast -pointsize 62 -fill white -annotate +30+30 "$d ($c)" test_099_time.png
mv test_004b_time.png test_004b.png
mv test_005_time.png test_005.png
mv test_007_time.png test_007.png
mv test_099_time.png test_099.png
- name: upload screenshots
uses: actions/upload-artifact@v7
with:
name: linuxscreen_${{ matrix.api-level }}
path: |
/home/runner/screen*.png
/home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/test_outputfiles/*.png
- name: upload logcat output
continue-on-error: true
uses: actions/upload-artifact@v7
with:
name: logcat_${{ matrix.api-level }}
path: |
/home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/android-refimpl-app/logcat.txt
- name: Rename artifact for nightly upload
if: github.event_name == 'push' && github.ref == 'refs/heads/zoff99/dev003'
run: |
pwd
cp -av /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/test_outputfiles/test_004b.png screen_shot_android_${{ matrix.api-level }}_02.png
cp -av /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/test_outputfiles/test_005.png screen_shot_android_${{ matrix.api-level }}_03.png
cp -av /home/runner/work/ToxAndroidRefImpl/ToxAndroidRefImpl/test_outputfiles/test_099.png screen_shot_android_${{ matrix.api-level }}_11.png
- name: Upload to nightly release
uses: ncipollo/release-action@v1
if: github.event_name == 'push' && github.ref == 'refs/heads/zoff99/dev003'
with:
allowUpdates: true
tag: nightly
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
prerelease: true
replacesArtifacts: true
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "screen_shot_android_${{ matrix.api-level }}_02.png,screen_shot_android_${{ matrix.api-level }}_03.png,screen_shot_android_${{ matrix.api-level }}_11.png"