This commit is contained in:
Frostebite 2023-12-21 06:14:30 +00:00
parent b595403796
commit 1d38f8aa2a
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,6 @@ jobs:
- 'cloud-runner-end2end-locking' - 'cloud-runner-end2end-locking'
- 'cloud-runner-end2end-caching' - 'cloud-runner-end2end-caching'
- 'cloud-runner-end2end-retaining' - 'cloud-runner-end2end-retaining'
- 'cloud-runner-environment'
- 'cloud-runner-remote-client' - 'cloud-runner-remote-client'
steps: steps:
- name: Checkout (default) - name: Checkout (default)
@ -164,6 +163,8 @@ jobs:
name: AWS Tests name: AWS Tests
if: github.event.event_type != 'pull_request_target' if: github.event.event_type != 'pull_request_target'
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs:
- k8sTests
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:

View File

@ -92,7 +92,6 @@ commands: echo "test"`;
unityVersion: UnityVersioning.determineUnityVersion('test-project', UnityVersioning.read('test-project')), unityVersion: UnityVersioning.determineUnityVersion('test-project', UnityVersioning.read('test-project')),
targetPlatform: 'StandaloneLinux64', targetPlatform: 'StandaloneLinux64',
cacheKey: `test-case-${uuidv4()}`, cacheKey: `test-case-${uuidv4()}`,
image: 'ubuntu',
containerHookFiles: `my-test-step-pre-build,my-test-step-post-build`, containerHookFiles: `my-test-step-pre-build,my-test-step-post-build`,
commandHookFiles: `my-test-hook-pre-build,my-test-hook-post-build`, commandHookFiles: `my-test-hook-pre-build,my-test-hook-post-build`,
}; };