Refactor and cleanup - no async input, combined setup/build, removed github logs for cli runs
parent
f24b458d21
commit
141fd46c08
|
|
@ -68,6 +68,7 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
TARGET_PLATFORM: ${{ matrix.targetPlatform }}
|
TARGET_PLATFORM: ${{ matrix.targetPlatform }}
|
||||||
cloudRunnerTests: true
|
cloudRunnerTests: true
|
||||||
|
versioning: None
|
||||||
- uses: ./
|
- uses: ./
|
||||||
id: aws-fargate-unity-build
|
id: aws-fargate-unity-build
|
||||||
timeout-minutes: 25
|
timeout-minutes: 25
|
||||||
|
|
|
||||||
|
|
@ -76,6 +76,7 @@ jobs:
|
||||||
KUBE_CONFIG: ${{ steps.read-base64.outputs.base64 }}
|
KUBE_CONFIG: ${{ steps.read-base64.outputs.base64 }}
|
||||||
unityVersion: ${{ matrix.unityVersion }}
|
unityVersion: ${{ matrix.unityVersion }}
|
||||||
cloudRunnerTests: true
|
cloudRunnerTests: true
|
||||||
|
versioning: None
|
||||||
|
|
||||||
###########################
|
###########################
|
||||||
# Cloud Runner Build Test #
|
# Cloud Runner Build Test #
|
||||||
|
|
|
||||||
|
|
@ -3235,6 +3235,7 @@ class BuildAutomationWorkflow {
|
||||||
${cloud_runner_1.default.buildParameters.cloudRunnerIntegrationTests ? '' : '#'} tree ${cloud_runner_folders_1.CloudRunnerFolders.builderPathFull.replace(/\\/g, `/`)}
|
${cloud_runner_1.default.buildParameters.cloudRunnerIntegrationTests ? '' : '#'} tree ${cloud_runner_folders_1.CloudRunnerFolders.builderPathFull.replace(/\\/g, `/`)}
|
||||||
chmod +x ${path_1.default.join(cloud_runner_folders_1.CloudRunnerFolders.builderPathFull, 'dist', `index.js`).replace(/\\/g, `/`)}
|
chmod +x ${path_1.default.join(cloud_runner_folders_1.CloudRunnerFolders.builderPathFull, 'dist', `index.js`).replace(/\\/g, `/`)}
|
||||||
echo "caching"
|
echo "caching"
|
||||||
|
ls ${path_1.default.join(cloud_runner_folders_1.CloudRunnerFolders.builderPathFull, 'dist')}
|
||||||
node ${path_1.default.join(cloud_runner_folders_1.CloudRunnerFolders.builderPathFull, 'dist', `index.js`).replace(/\\/g, `/`)} -m remote-cli`;
|
node ${path_1.default.join(cloud_runner_folders_1.CloudRunnerFolders.builderPathFull, 'dist', `index.js`).replace(/\\/g, `/`)} -m remote-cli`;
|
||||||
}
|
}
|
||||||
static get BuildCommands() {
|
static get BuildCommands() {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -98,6 +98,7 @@ export class BuildAutomationWorkflow implements WorkflowInterface {
|
||||||
} tree ${CloudRunnerFolders.builderPathFull.replace(/\\/g, `/`)}
|
} tree ${CloudRunnerFolders.builderPathFull.replace(/\\/g, `/`)}
|
||||||
chmod +x ${path.join(CloudRunnerFolders.builderPathFull, 'dist', `index.js`).replace(/\\/g, `/`)}
|
chmod +x ${path.join(CloudRunnerFolders.builderPathFull, 'dist', `index.js`).replace(/\\/g, `/`)}
|
||||||
echo "caching"
|
echo "caching"
|
||||||
|
ls ${path.join(CloudRunnerFolders.builderPathFull, 'dist')}
|
||||||
node ${path.join(CloudRunnerFolders.builderPathFull, 'dist', `index.js`).replace(/\\/g, `/`)} -m remote-cli`;
|
node ${path.join(CloudRunnerFolders.builderPathFull, 'dist', `index.js`).replace(/\\/g, `/`)} -m remote-cli`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue