diff --git a/.github/workflows/cloud-runner-ci-pipeline.yml b/.github/workflows/cloud-runner-ci-pipeline.yml index 47a3410a..2a38950d 100644 --- a/.github/workflows/cloud-runner-ci-pipeline.yml +++ b/.github/workflows/cloud-runner-ci-pipeline.yml @@ -117,11 +117,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} GIT_PRIVATE_TOKEN: ${{ secrets.GIT_PRIVATE_TOKEN }} - GITHUB_TOKEN: - ${{ secrets.GITHUB_TOKEN }} - # needs: - # - smokeTests - # - buildTargetTests + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} awsTests: name: AWS Tests if: github.event.event_type != 'pull_request_target' diff --git a/dist/index.js b/dist/index.js index 181e9efd..e5333c43 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 adfa6f9d..c783208d 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 d7f01ddd..6795e59f 100644 --- a/src/model/cloud-runner/providers/k8s/index.ts +++ b/src/model/cloud-runner/providers/k8s/index.ts @@ -163,10 +163,7 @@ class Kubernetes implements ProviderInterface { CloudRunnerLogger.log('Watching pod until running'); await KubernetesTaskRunner.watchUntilPodRunning(this.kubeClient, this.podName, this.namespace); - CloudRunnerLogger.log('Pod running, streaming logs'); - CloudRunnerLogger.log( - `Starting logs follow for pod: ${this.podName} container: ${this.containerName} namespace: ${this.namespace} pvc: ${this.pvcName} ${CloudRunner.buildParameters.kubeVolumeSize}/${CloudRunner.buildParameters.containerCpu}/${CloudRunner.buildParameters.containerMemory}`, - ); + CloudRunnerLogger.log('Pod is running'); output += await KubernetesTaskRunner.runTask( this.kubeConfig, this.kubeClient,