diff --git a/.github/workflows/cloud-runner-ci-pipeline.yml b/.github/workflows/cloud-runner-ci-pipeline.yml index d234f262..2dec228b 100644 --- a/.github/workflows/cloud-runner-ci-pipeline.yml +++ b/.github/workflows/cloud-runner-ci-pipeline.yml @@ -31,7 +31,6 @@ env: USE_GKE_GCLOUD_AUTH_PLUGIN: true GIT_PRIVATE_TOKEN: ${{ secrets.GIT_PRIVATE_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - CLOUD_RUNNER_MINIKUBE: true jobs: smokeTests: @@ -143,6 +142,7 @@ jobs: TARGET_PLATFORM: StandaloneWindows64 cloudRunnerTests: true versioning: None + KUBE_STORAGE_CLASS: local-path PROVIDER_STRATEGY: ${{ matrix.providerStrategy }} buildTargetTests: name: Local Build Target Tests diff --git a/dist/index.js b/dist/index.js index 0c399a8c..22656d5c 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index c10bbe3d..51f0fe97 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/model/cloud-runner/providers/k8s/index.ts b/src/model/cloud-runner/providers/k8s/index.ts index 193688b0..b5fdb700 100644 --- a/src/model/cloud-runner/providers/k8s/index.ts +++ b/src/model/cloud-runner/providers/k8s/index.ts @@ -127,14 +127,12 @@ class Kubernetes implements ProviderInterface { ? CloudRunner.lockedWorkspace : this.buildParameters.buildGuid; this.pvcName = `unity-builder-pvc-${id}`; - if (!process.env['CLOUD_RUNNER_MINIKUBE']) { - await KubernetesStorage.createPersistentVolumeClaim( - this.buildParameters, - this.pvcName, - this.kubeClient, - this.namespace, - ); - } + await KubernetesStorage.createPersistentVolumeClaim( + this.buildParameters, + this.pvcName, + this.kubeClient, + this.namespace, + ); this.buildGuid = buildGuid; this.secretName = `build-credentials-${this.buildGuid}`; this.jobName = `unity-builder-job-${this.buildGuid}`;