Fix
parent
0d9c2bf1d8
commit
af72cd4a7a
|
|
@ -52,10 +52,10 @@ jobs:
|
|||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: eu-west-2
|
||||
remoteBuilderBranch: remote-builder/unified-providers
|
||||
cloudRunnerBranch: remote-builder/unified-providers
|
||||
DEBUG: true
|
||||
with:
|
||||
remoteBuildCluster: aws
|
||||
cloudRunnerCluster: aws
|
||||
projectPath: ${{ matrix.projectPath }}
|
||||
unityVersion: ${{ matrix.unityVersion }}
|
||||
targetPlatform: ${{ matrix.targetPlatform }}
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ jobs:
|
|||
DEBUG: true
|
||||
remoteBuilderBranch: remote-builder/unified-providers
|
||||
with:
|
||||
remoteBuildCluster: k8s
|
||||
cloudRunnerCluster: k8s
|
||||
targetPlatform: ${{ matrix.targetPlatform }}
|
||||
kubeConfig: ${{ steps.read-base64.outputs.base64 }}
|
||||
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ inputs:
|
|||
required: false
|
||||
default: ''
|
||||
description: 'Path to a Namespace.Class.StaticMethod to run to perform the build.'
|
||||
remoteBuildCluster:
|
||||
cloudRunnerCluster:
|
||||
default: 'local'
|
||||
required: false
|
||||
description: 'Either local, k8s or aws can be used to run builds on a remote cluster. Additional parameters must be configured.'
|
||||
|
|
@ -49,11 +49,11 @@ inputs:
|
|||
default: ''
|
||||
required: false
|
||||
description: 'Supply a Persistent Volume Claim name to use for the Unity build.'
|
||||
remoteBuildMemory:
|
||||
cloudRunnerMemory:
|
||||
default: '750M'
|
||||
required: false
|
||||
description: 'Amount of memory to assign the remote build container'
|
||||
remoteBuildCpu:
|
||||
cloudRunnerCpu:
|
||||
default: '1.0'
|
||||
required: false
|
||||
description: 'Amount of CPU time to assign the remote build container'
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
|
@ -9,7 +9,7 @@ import Platform from './platform';
|
|||
import Project from './project';
|
||||
import Unity from './unity';
|
||||
import Versioning from './versioning';
|
||||
import CloudRunner from './remote-builder/cloud-runner';
|
||||
import CloudRunner from './cloud-runner/cloud-runner';
|
||||
|
||||
export {
|
||||
Action,
|
||||
|
|
|
|||
Loading…
Reference in New Issue