revert first commit

pull/150/head
Aaron Trudeau 2021-10-19 23:41:13 -04:00
parent 15f43f6689
commit ef11cdccd1
No known key found for this signature in database
GPG Key ID: 29F89A9BDAAF7BDE
4 changed files with 0 additions and 16 deletions

View File

@ -40,10 +40,6 @@ inputs:
required: false
default: 'Test Results'
description: 'Name for the check run that is created when a github token is provided.'
packageMode:
required: false
default: false
description: 'Whether the tests are being run for a Unity package. Not needed for packages located within a Unity Project'
outputs:
artifactsPath:
description: 'Path where the artifacts are stored'

View File

@ -16,7 +16,6 @@ async function action() {
sshAgent,
githubToken,
checkName,
packageMode,
} = Input.getFromUser();
const baseImage = ImageTag.createForBase({ version: unityVersion, customImage });
@ -34,7 +33,6 @@ async function action() {
useHostNetwork,
customParameters,
sshAgent,
packageMode,
githubToken,
});
} finally {

View File

@ -27,7 +27,6 @@ class Docker {
useHostNetwork,
customParameters,
sshAgent,
packageMode,
githubToken,
} = parameters;
@ -44,7 +43,6 @@ class Docker {
--env TEST_MODE="${testMode}" \
--env ARTIFACTS_PATH="${artifactsPath}" \
--env CUSTOM_PARAMETERS="${customParameters}" \
--env PACKAGE_MODE="${packageMode}" \
--env GITHUB_REF \
--env GITHUB_SHA \
--env GITHUB_REPOSITORY \

View File

@ -25,7 +25,6 @@ class Input {
const sshAgent = getInput('sshAgent') || '';
const githubToken = getInput('githubToken') || '';
const checkName = getInput('checkName') || 'Test Results';
const rawPackageMode = getInput('packageMode') || 'false';
// Validate input
if (!includes(this.testModes, testMode)) {
@ -44,18 +43,12 @@ class Input {
throw new Error(`Invalid useHostNetwork "${rawUseHostNetwork}"`);
}
if(rawPackageMode !== 'true' && rawPackageMode !== 'false') {
throw new Error(`Invalid packageMode "${rawPackageMode}"`);
}
// Sanitise input
const projectPath = rawProjectPath.replace(/\/$/, '');
const artifactsPath = rawArtifactsPath.replace(/\/$/, '');
const useHostNetwork = rawUseHostNetwork === 'true';
const unityVersion =
rawUnityVersion === 'auto' ? UnityVersionParser.read(projectPath) : rawUnityVersion;
const packageMode = rawPackageMode === 'true';
// Return sanitised input
return {
@ -69,7 +62,6 @@ class Input {
sshAgent,
githubToken,
checkName,
packageMode,
};
}
}