Skip to content

Commit

Permalink
doc: Remove unused document (#835)
Browse files Browse the repository at this point in the history
* [skipci] ci: fix condition of auto trigger

* fix

* [skipci] fix

* remove tutorial doc

* fix

* fix
  • Loading branch information
karasusan authored Jan 12, 2023
1 parent 579f88d commit 7ef33dc
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 101 deletions.
4 changes: 2 additions & 2 deletions .yamato/upm-ci-webapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ test_client_{{ platform.name }}:
trigger_webapp_test_{{ project.name }}:
name : Trigger all WebApp test {{ project.packagename }}
triggers:
expression: pull_request.target eq "develop"
expression: pull_request.target eq "main"
dependencies:
{% for platform in platforms %}
- .yamato/upm-ci-webapp.yml#test_{{ platform.name }}
- .yamato/upm-ci-webapp.yml#test_client_{{ platform.name }}
{% endfor %}

{% endfor %}
{% endfor %}
96 changes: 0 additions & 96 deletions com.unity.renderstreaming/Documentation~/tutorial.md

This file was deleted.

2 changes: 2 additions & 0 deletions pack_webapp.cmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@echo off

cd WebApp
call npm install --legacy-peer-deps
call npm run build
Expand Down
8 changes: 5 additions & 3 deletions pack_webapp.sh
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
#!/bin/bash -eu

cd WebApp
npm install --legacy-peer-deps
npm run build
npm run pack

chmod a+x webserver

app_name=webserver

if [ "$(uname)" == 'Darwin' ]; then
app_name=webserver_mac
mv webserver $app_name
fi

chmod a+x webserver
mv webserver $app_name

cd ..
mkdir WebApp/bin~
mv WebApp/$app_name WebApp/bin~
2 changes: 2 additions & 0 deletions test_webapp.cmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@echo off

cd WebApp
call npm install --legacy-peer-deps
call npm run lint
Expand Down
2 changes: 2 additions & 0 deletions test_webapp.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash -eu

cd WebApp
npm install --legacy-peer-deps
npm run lint
Expand Down
2 changes: 2 additions & 0 deletions test_webapp_client.cmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@echo off

cd WebApp\client
call npm install
call npm run lint
Expand Down
2 changes: 2 additions & 0 deletions test_webapp_client.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash -eu

cd WebApp/client
npm install
npm run lint
Expand Down

0 comments on commit 7ef33dc

Please sign in to comment.