Skip to content

Commit 7ef33dc

Browse files
authored
doc: Remove unused document (#835)
* [skipci] ci: fix condition of auto trigger * fix * [skipci] fix * remove tutorial doc * fix * fix
1 parent 579f88d commit 7ef33dc

File tree

8 files changed

+17
-101
lines changed

8 files changed

+17
-101
lines changed

.yamato/upm-ci-webapp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ test_client_{{ platform.name }}:
7777
trigger_webapp_test_{{ project.name }}:
7878
name : Trigger all WebApp test {{ project.packagename }}
7979
triggers:
80-
expression: pull_request.target eq "develop"
80+
expression: pull_request.target eq "main"
8181
dependencies:
8282
{% for platform in platforms %}
8383
- .yamato/upm-ci-webapp.yml#test_{{ platform.name }}
8484
- .yamato/upm-ci-webapp.yml#test_client_{{ platform.name }}
8585
{% endfor %}
8686

87-
{% endfor %}
87+
{% endfor %}

com.unity.renderstreaming/Documentation~/tutorial.md

Lines changed: 0 additions & 96 deletions
This file was deleted.

pack_webapp.cmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@echo off
2+
13
cd WebApp
24
call npm install --legacy-peer-deps
35
call npm run build

pack_webapp.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1+
#!/bin/bash -eu
2+
13
cd WebApp
24
npm install --legacy-peer-deps
35
npm run build
46
npm run pack
57

8+
chmod a+x webserver
9+
610
app_name=webserver
711

812
if [ "$(uname)" == 'Darwin' ]; then
913
app_name=webserver_mac
14+
mv webserver $app_name
1015
fi
1116

12-
chmod a+x webserver
13-
mv webserver $app_name
14-
1517
cd ..
1618
mkdir WebApp/bin~
1719
mv WebApp/$app_name WebApp/bin~

test_webapp.cmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@echo off
2+
13
cd WebApp
24
call npm install --legacy-peer-deps
35
call npm run lint

test_webapp.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash -eu
2+
13
cd WebApp
24
npm install --legacy-peer-deps
35
npm run lint

test_webapp_client.cmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@echo off
2+
13
cd WebApp\client
24
call npm install
35
call npm run lint

test_webapp_client.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash -eu
2+
13
cd WebApp/client
24
npm install
35
npm run lint

0 commit comments

Comments
 (0)