Skip to content

Commit 332a26d

Browse files
authored
Merge pull request #71 from SourcePointUSA/DIA-3802-git-action-tests-pipeline
DIA-3802 git action tests pipeline
2 parents 8033b8a + ba074f2 commit 332a26d

File tree

123 files changed

+686
-110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+686
-110
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
UI-TESTS/BUILDS/iOS/*/** filter=lfs diff=lfs merge=lfs -text
2+
.app filter=lfs diff=lfs merge=lfs -text
3+
UnityFramework filter=lfs diff=lfs merge=lfs -text
4+
UI-TESTS/BUILDS/iOS/ConsentMessagePlugin.app/*/** filter=lfs diff=lfs merge=lfs -text
5+
UI-TESTS/BUILDS/iOS/ConsentMessagePlugin.app filter=lfs diff=lfs merge=lfs -text

.github/workflows/Test.yml

Lines changed: 205 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
1+
name: UI tests
2+
on: [pull_request]
3+
4+
jobs:
5+
AndroidUITests:
6+
needs: IOSUITests
7+
if: always()
8+
runs-on: ubuntu-latest
9+
name: AndroidUITests
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
- name: Enable KVM
14+
run: |
15+
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
16+
sudo udevadm control --reload-rules
17+
sudo udevadm trigger --name-match=kvm
18+
- name: set up JDK 17
19+
uses: actions/setup-java@v4
20+
with:
21+
distribution: zulu
22+
java-version: 17
23+
- name: Gradle cache
24+
uses: gradle/actions/setup-gradle@v3
25+
- name: AVD cache
26+
uses: actions/cache@v4
27+
id: avd-cache
28+
with:
29+
path: |
30+
~/.android/avd/*
31+
~/.android/adb*
32+
key: avd-34
33+
- name: create AVD and generate snapshot for caching
34+
if: steps.avd-cache.outputs.cache-hit != 'true'
35+
uses: reactivecircus/android-emulator-runner@v2
36+
with:
37+
api-level: 34
38+
target: google_apis
39+
force-avd-creation: true
40+
disk-size: 6000M
41+
heap-size: 3048M
42+
ram-size: 3048M
43+
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
44+
disable-animations: false
45+
arch: x86_64
46+
script: echo "Generated AVD snapshot for caching."
47+
- name: Setup .NET
48+
uses: actions/setup-dotnet@v1
49+
with:
50+
dotnet-version: '8.0'
51+
- name: Setup dotnet-test-rerun
52+
run: |
53+
dotnet tool install --global dotnet-test-rerun
54+
- name: Install and run Appium Server
55+
run: |
56+
npm i --location=global appium
57+
appium driver install uiautomator2
58+
CurWorkDir=$(pwd)
59+
pushd "$CurWorkDir"
60+
mkdir logs
61+
cd logs
62+
echo "appium" > appiumLog.txt
63+
popd
64+
appium &>logs/appiumLog.txt &
65+
- name: Create log files for logcat
66+
run: |
67+
cd logs
68+
echo "logcat" > logcat.txt
69+
echo "logcat" > logcatPID.txt
70+
- name: Install and run AltTester Server
71+
run: |
72+
CurWorkDir=$(pwd)
73+
pushd "$CurWorkDir"
74+
cd logs
75+
echo "alttester" > altTesterLog.txt
76+
echo "alttester" > runAltTesterLog.txt
77+
popd
78+
wget https://alttester.com/app/uploads/AltTester/desktop/AltTesterDesktopLinuxBatchmode.zip
79+
unzip AltTesterDesktopLinuxBatchmode.zip
80+
cd AltTesterDesktopLinux
81+
chmod +x AltTesterDesktop.x86_64
82+
./AltTesterDesktop.x86_64 -batchmode -nographics -port 13000 -license ${{ secrets.ALTTESTERLICENSEKEY }} -termsAndConditionsAccepted -logfile ~/work/unity-sdk/unity-sdk/logs/altTesterLog.txt &>~/work/unity-sdk/unity-sdk/logs/runAltTesterLog.txt &
83+
- name: Start emulator and run tests
84+
uses: reactivecircus/android-emulator-runner@v2
85+
with:
86+
api-level: 34
87+
target: google_apis
88+
force-avd-creation: false
89+
disk-size: 6000M
90+
heap-size: 3048M
91+
ram-size: 3048M
92+
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
93+
disable-animations: true
94+
arch: x86_64
95+
script: |
96+
adb logcat > ~/work/unity-sdk/unity-sdk/logs/logcat.txt & echo $! > ~/work/unity-sdk/unity-sdk/logs/logcatPID.txt
97+
cd ~/work/unity-sdk/unity-sdk && chmod -R 777 UI-TESTS
98+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=ClickAcceptAllButtonTest --rerunMaxAttempts 5
99+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=ClickRejectAllButtonTest --rerunMaxAttempts 5
100+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=OpenPmLayersTest --rerunMaxAttempts 5
101+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=SaveAndExitGDPRTest --rerunMaxAttempts 5
102+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=SaveAndExitCCPATest --rerunMaxAttempts 5
103+
# :test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=SaveAndExitUSNATTest --rerunMaxAttempts 5
104+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=ClearAllButtonTest --rerunMaxAttempts 5
105+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=AuthIdTest --rerunMaxAttempts 5
106+
# :test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=AcceptRejectAllUsnatInPMTest --rerunMaxAttempts 5
107+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=ProgramaticRejectAllGDPRTest --rerunMaxAttempts 5
108+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=ProgramaticRejectAllCCPATest --rerunMaxAttempts 5
109+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=ProgramaticRejectAllUSNATTest --rerunMaxAttempts 5
110+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=ProgramaticCustomConsentGDPRTest --rerunMaxAttempts 5
111+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/android.runsettings --filter Name=MessageLanguageTest --rerunMaxAttempts 5
112+
lsof -P | cat ~/work/unity-sdk/unity-sdk/logs/logcatPID.txt | xargs kill
113+
- name: Move dotnet logs
114+
if: always()
115+
run: |
116+
cd ~/work/unity-sdk/unity-sdk/UI-TESTS
117+
find . -name '*.trx' -exec mv {} ~/work/unity-sdk/unity-sdk/logs \;
118+
- name: Archive logs
119+
if: always()
120+
uses: actions/upload-artifact@v4
121+
with:
122+
name: androidLogs
123+
path: logs/
124+
compression-level: 0
125+
IOSUITests:
126+
runs-on: macos-13
127+
name: IOSUITests
128+
steps:
129+
- name: Checkout
130+
uses: actions/checkout@v4
131+
with:
132+
lfs: 'true'
133+
- name: Checkout LFS objects
134+
run: git lfs pull
135+
- name: Setup XCode
136+
run: sudo xcode-select -s '/Applications/Xcode_14.1.app/Contents/Developer'
137+
- name: Boot simulator
138+
run: |
139+
xcrun simctl boot $(xcrun simctl list devices | grep -m 1 'iPhone 14' |grep -E -o -i '([0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12})')
140+
sleep 30
141+
open -a simulator
142+
sleep 60
143+
xcrun simctl list devices
144+
- name: Setup .NET
145+
uses: actions/setup-dotnet@v1
146+
with:
147+
dotnet-version: '8.0'
148+
- name: Setup dotnet-test-rerun
149+
run: |
150+
dotnet tool install --global dotnet-test-rerun
151+
- name: Install and run Appium Server
152+
run: |
153+
npm i --location=global appium
154+
appium driver install xcuitest
155+
CurWorkDir=$(pwd)
156+
pushd "$CurWorkDir"
157+
mkdir logs
158+
cd logs
159+
echo "appium" > appiumLog.txt
160+
popd
161+
appium &>logs/appiumLog.txt &
162+
- name: Install and run AltTester Server
163+
run: |
164+
CurWorkDir=$(pwd)
165+
pushd "$CurWorkDir"
166+
cd logs
167+
echo "alttester" > altTesterLog.txt
168+
echo "alttester" > runAltTesterLog.txt
169+
popd
170+
wget https://alttester.com/app/uploads/AltTester/desktop/AltTesterDesktopPackageMac__v2.1.2.zip
171+
unzip AltTesterDesktopPackageMac__v2.1.2.zip
172+
cd AltTesterDesktopPackageMac__v2.1.2
173+
hdiutil attach AltTesterDesktop__v2.1.2.dmg
174+
cp -R /Volumes/AltTesterDesktop/AltTesterDesktop.app ~
175+
cd ~ && AltTesterDesktop.app/Contents/MacOS/AltTesterDesktop -batchmode -nographics -port 13000 -license ${{ secrets.ALTTESTERLICENSEKEY }} -termsAndConditionsAccepted -logfile ~/work/unity-sdk/unity-sdk/logs/altTesterLog.txt &>~/work/unity-sdk/unity-sdk/logs/runAltTesterLog.txt &
176+
- name: Run tests
177+
run: |
178+
cd ~/work/unity-sdk/unity-sdk && chmod -R 777 UI-TESTS
179+
cd UI-TESTS
180+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=ClickAcceptAllButtonTest --rerunMaxAttempts 5
181+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=ClickRejectAllButtonTest --rerunMaxAttempts 5
182+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=OpenPmLayersTest --rerunMaxAttempts 5
183+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=SaveAndExitGDPRTest --rerunMaxAttempts 5
184+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=SaveAndExitCCPATest --rerunMaxAttempts 5
185+
# :test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=SaveAndExitUSNATTest --rerunMaxAttempts 5
186+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=ClearAllButtonTest --rerunMaxAttempts 5
187+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=AuthIdTest --rerunMaxAttempts 5
188+
# :test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=AcceptRejectAllUsnatInPMTest --rerunMaxAttempts 5
189+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=ProgramaticRejectAllGDPRTest --rerunMaxAttempts 5
190+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=ProgramaticRejectAllCCPATest --rerunMaxAttempts 5
191+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=ProgramaticRejectAllUSNATTest --rerunMaxAttempts 5
192+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=ProgramaticCustomConsentGDPRTest --rerunMaxAttempts 5
193+
test-rerun ~/work/unity-sdk/unity-sdk/UI-TESTS -s ~/work/unity-sdk/unity-sdk/UI-TESTS/ios.runsettings --filter Name=MessageLanguageTest --rerunMaxAttempts 5
194+
- name: Move dotnet logs
195+
if: always()
196+
run: |
197+
cd ~/work/unity-sdk/unity-sdk/UI-TESTS
198+
find . -name '*.trx' -exec mv {} ~/work/unity-sdk/unity-sdk/logs \;
199+
- name: Archive logs
200+
if: always()
201+
uses: actions/upload-artifact@v4
202+
with:
203+
name: iosLogs
204+
path: logs/
205+
compression-level: 0

.github/workflows/activation.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Acquire activation file
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
activation:
8+
name: Request manual activation file 🔑
9+
runs-on: macos-latest
10+
steps:
11+
# Request manual activation file
12+
- name: Unity - Request Activation File
13+
id: requestActivationFile
14+
uses: game-ci/[email protected]
15+
- name: Upload activation file
16+
uses: actions/upload-artifact@v3
17+
with:
18+
name: ${{ steps.requestActivationFile.outputs.filePath }}
19+
path: ${{ steps.requestActivationFile.outputs.filePath }}
20+
retention-days: 3

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
.gradle/
1818

1919
# Builds
20-
*.apk
20+
*DoNotShip*
2121

2222
# Autogenerated VS/MD/Consulo solution and project files
2323
ExportedObj/
@@ -60,8 +60,8 @@ Thumbs.db.meta
6060
#UI-TESTS related
6161
/UI-TESTS/bin/Debug/
6262
/UI-TESTS/obj/Debug/
63-
/UI-TESTS/BUILDS/Android/
64-
/UI-TESTS/BUILDS/iOS/
63+
/UI-TESTS/BUILDS/IOS/*
64+
!/UI-TESTS/BUILDS/IOS/ConsentMessagePlugin.app
6565
/UI-TESTS/obj/project.nuget.cache
6666
/UI-TESTS/obj/
6767
!/UI-TESTS/UI-TESTS.csproj
53.5 MB
Binary file not shown.
Lines changed: 3 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:d2159a2299ccbaabedd1c5f54ce6628b9fb4864270ef21bf2759942a03939cd6
3+
size 29752
Lines changed: 3 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:2dfa45a9119f374921d1df7f8299f7da2758780318f267ba89e5313b189dc7c0
3+
size 4819104
Lines changed: 3 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:a8fd0f078737122e24a9bf2cb920a6f0fd27595c2c767c1c36ac378bb0ee12b2
3+
size 770
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:516b9f1e7a2e84bd19740c83c975460714a7c0d4fd4b9ca4dddbce42791c3d8b
3+
size 1386
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:68878312b1afddc75fdfb62fd8e94d0980ce1eaef4fe48157a2a82398b7aae64
3+
size 3923
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:8a5df2c7244a7254a85354e47497e1effc0f9ddc93382ca0e73d293a17f21851
3+
size 67
Lines changed: 3 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:68878312b1afddc75fdfb62fd8e94d0980ce1eaef4fe48157a2a82398b7aae64
3+
size 3923
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:8a5df2c7244a7254a85354e47497e1effc0f9ddc93382ca0e73d293a17f21851
3+
size 67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:8cc4f3cd505acf6199f0bdc2c018ba33f7af3e8486b33f07b706d83a347a41cf
3+
size 91
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:8cc4f3cd505acf6199f0bdc2c018ba33f7af3e8486b33f07b706d83a347a41cf
3+
size 91
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:04049ac1e1ccdbf6654c8254072d0e214a3dbed8be83a9e2b26b4fec7f517ab6
3+
size 8379184
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:dd8e52b2e97091395644280f81c55c158d75fbdddc70c58eb11626d78054640e
3+
size 68301
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:98a7950ec6de3242c2e190dfa630188dfa32511a125542b94baa952d1c757d49
3+
size 93718
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:7c33aa707bc3fdc83991b81a97d6fc622b140762a767300f08f616c2c0a91255
3+
size 25453
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:c5baa176a5b72cd545266340e42102d393a5e43d38c95796bc828918bb95277f
3+
size 337563
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:e60aec2c5115d65b3acb3c55ea21576dbd770f579166c017125571e46ae560ed
3+
size 33598
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:984bd4182da3b2ec7cd094cc9df640c282d7595e1e82cd873dd81061f39f050e
3+
size 417600
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:fe4e427429a1df1ee948f8b65dd5a16e54bd57b590df45e8a19e659b3ac805b9
3+
size 832
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:fa084ae6e7adaec2c0d4da6463e9ea287dcfa22edd1045a6958e417598d564f0
3+
size 3204
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:1a29c84e5b357d95f3a5840c8bcfbc7898c8b4cd71b42f4adeb0c732bf0bbd6f
3+
size 322
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:5db5a26aed28b7cfbdb217254f58a612ed46b70ed182ad085d4bb25518583ba7
3+
size 70412
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:dc033a79c6e3d2037120be09965b94008c5774e75b7ba104fb7b37a7a4b60ae1
3+
size 168808
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:56b936a618f93b72bdba8d6e77bd27729357557279bcf4b2d4a0128242e49ab6
3+
size 1252752
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:1201c6583a3af607dc4419349dc6abbfbbefdba56a32508a39b5727032691ada
3+
size 30968
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:f9ad7ea020b19bbacbb3a54d94672cf23ae143b82415171a201027415c58eb4a
3+
size 4664
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:d52668a569cc4f4534eda0df93f7b4165353ae25483f859d182a158b50eca735
3+
size 28640
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:0afde36772ecc6355363f11147a449018a426248cfb96f6a40522254c5a29beb
3+
size 1141568
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:48c3dd70775df55b0afa09f43da7322863442545b16a54cac73e6ed6ba34ff89
3+
size 992
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:e82b14526f93938a86fef342297522e1d8c4b3be9af63817bac2c7988da97145
3+
size 695872

0 commit comments

Comments
 (0)