Feature/create check (#97)

This commit is contained in:
David Finol
2021-02-27 12:13:19 -06:00
committed by GitHub
parent 345f4c64bd
commit 43d90c252f
25 changed files with 1018 additions and 13 deletions

View File

@@ -29,4 +29,6 @@ fi;
# Exit with code from the build step.
#
if [ $USE_EXIT_CODE = true ]; then
exit $TEST_RUNNER_EXIT_CODE
fi;

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,18 @@
{{#runs}}
<details><summary>{{summary}}</summary>
{{#suites}}
* {{summary}}
{{#tests}}
* {{summary}}
{{#if annotation}}
{{indent annotation.message}}
{{indent annotation.raw_details}}
{{/if}}
{{/tests}}
{{/suites}}
</details>
{{/runs}}

View File

@@ -0,0 +1,3 @@
{{#runs}}
### {{summary}}
{{/runs}}

View File

@@ -9,7 +9,7 @@ if [[ -n "$UNITY_LICENSE" ]] || [[ -n "$UNITY_LICENSE_FILE" ]]; then
# Note that this is the ONLY WAY for PERSONAL LICENSES in 2020.
# * See for more details: https://gitlab.com/gableroux/unity3d-gitlab-ci-example/issues/5#note_72815478
#
# The license file can be acquired using `webbertakken/request-manual-activation-file` action.
# The license file can be acquired using `game-ci/request-manual-activation-file` action.
echo "Requesting activation (personal license)"
# Set the license file path
@@ -85,7 +85,7 @@ else
echo "Visit https://github.com/webbertakken/unity-builder#usage for more"
echo "details on how to set up one of the possible activation strategies."
# Immediately exit as no UNITY_EXIT_CODE can be derrived.
# Immediately exit as no UNITY_EXIT_CODE can be derived.
exit 1;
fi