diff --git a/.github/workflows/cloud-runner-aws-pipeline.yml b/.github/workflows/cloud-runner-aws-pipeline.yml index bb25c995..cd471ef6 100644 --- a/.github/workflows/cloud-runner-aws-pipeline.yml +++ b/.github/workflows/cloud-runner-aws-pipeline.yml @@ -54,6 +54,7 @@ jobs: - uses: actions/setup-node@v2 with: node-version: 12.x + - run: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | xargs -d '\n' -I{} gcloud logging write game-ci "{}" & - run: yarn - run: yarn run cli --help - run: yarn run test-i-aws @@ -78,7 +79,6 @@ jobs: AWS_DEFAULT_REGION: eu-west-2 DEBUG: true GCP_LOG_FILE: ${{ github.workspace }}/cloud-runner-logs - INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | xargs -d '\n' -I{} gcloud logging write game-ci "{}" with: cloudRunnerCluster: aws versioning: None diff --git a/src/model/cli/remote-client/setup-cloud-runner-repository.ts b/src/model/cli/remote-client/setup-cloud-runner-repository.ts index b1dfad2a..bb7cdfef 100644 --- a/src/model/cli/remote-client/setup-cloud-runner-repository.ts +++ b/src/model/cli/remote-client/setup-cloud-runner-repository.ts @@ -62,6 +62,7 @@ export class SetupCloudRunnerRepository { } private static async pullLatestLFS() { + await CloudRunnerSystem.Run(`ls -lh ${CloudRunnerState.lfsDirectoryFull}/..`); process.chdir(CloudRunnerState.repoPathFull); await CloudRunnerSystem.Run(`git lfs pull`); RemoteClientLogger.log(`pulled latest LFS files`);