#!/usr/bin/env bash # # Set and display project path # UNITY_PROJECT_PATH="$GITHUB_WORKSPACE/$PROJECT_PATH" echo "Using project path \"$UNITY_PROJECT_PATH\"." # # Set and display the artifacts path # echo "Using artifacts path \"$ARTIFACTS_PATH\" to save test results." FULL_ARTIFACTS_PATH=$GITHUB_WORKSPACE/$ARTIFACTS_PATH # # Set and display the coverage results path # echo "Using coverage results path \"$COVERAGE_RESULTS_PATH\" to save test coverage results." FULL_COVERAGE_RESULTS_PATH=$GITHUB_WORKSPACE/$COVERAGE_RESULTS_PATH # # Display custom parameters # echo "Using custom parameters $CUSTOM_PARAMETERS." # The following tests are 2019 mode (requires Unity 2019.2.11f1 or later) # Reference: https://docs.unity3d.com/2019.3/Documentation/Manual/CommandLineArguments.html # # Display the unity version # echo "Using Unity version \"$UNITY_VERSION\" to test." # # Create an empty project for testing if in package mode # if [ "$PACKAGE_MODE" = "true" ]; then echo "Running tests on a Unity package rather than a Unity project." if ! command -v jq &> /dev/null then echo "jq could not be found. This is required for package mode, and is likely the result of using a custom Docker image. Please use the default image or install jq to your custom image." exit 1 fi echo "" echo "###########################" echo "# Package Folder #" echo "###########################" echo "" ls -la "$UNITY_PROJECT_PATH" echo "" echo "Creating an empty Unity project to add the package $PACKAGE_NAME to." TEMP_PROJECT_PATH="./TempProject" unity-editor \ -batchmode \ -createProject "$TEMP_PROJECT_PATH" \ -quit # use jq to add the package to the temp project through manually modifying Packages/manifest.json echo "Adding package to the temporary project's dependencies and testables..." echo "" PACKAGE_MANIFEST_PATH="$TEMP_PROJECT_PATH/Packages/manifest.json" if [ ! -f "$PACKAGE_MANIFEST_PATH" ]; then echo "Packages/mainfest.json was not created properly. This indicates a problem with the Action, not with your package. Logging directories and aborting..." echo "" echo "###########################" echo "# Temp Project Folder #" echo "###########################" echo "" ls -a "$TEMP_PROJECT_PATH" echo "" echo "################################" echo "# Temp Project Packages Folder #" echo "################################" echo "" ls -a "$TEMP_PROJECT_PATH/Packages" exit 1 fi PACKAGE_MANIFEST_JSON=$(cat "$PACKAGE_MANIFEST_PATH") echo "$PACKAGE_MANIFEST_JSON" | \ jq \ --arg packageName "$PACKAGE_NAME" \ --arg projectPath "$UNITY_PROJECT_PATH" \ --arg scopedRegistryUrl "$SCOPED_REGISTRY_URL" \ --argjson registryScopes "$(echo "[\"$REGISTRY_SCOPES\"]" | sed 's/,/","/g')" \ '.dependencies += {"com.unity.testtools.codecoverage": "1.1.1"} | .dependencies += {"\($packageName)": "file:\($projectPath)"} | . += {testables: ["\($packageName)"]} | . += {scopedRegistries: [{"name":"dependency", "url":"\($scopedRegistryUrl)", scopes: $registryScopes}] }' \ > "$PACKAGE_MANIFEST_PATH" UNITY_PROJECT_PATH="$TEMP_PROJECT_PATH" if [ -n "$PRIVATE_REGISTRY_TOKEN" ]; then echo "Private registry token detected, creating .upmconfig.toml" UPM_CONFIG_TOML_PATH="$HOME/.upmconfig.toml" echo "Creating toml at path: $UPM_CONFIG_TOML_PATH" touch $UPM_CONFIG_TOML_PATH cat > "$UPM_CONFIG_TOML_PATH" <