You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run fast checks that allow for detection of the simplest issues
45
-
- .yamato/_run-all.yml#run_quick_checks
46
-
triggers:
47
-
cancel_old_ci: true
48
-
pull_requests:
49
-
- targets:
50
-
only:
51
-
- "develop"
52
-
- "develop-2.0.0"
53
-
- "/release\/.*/"
54
-
- drafts: false
55
-
56
41
# Run all relevant tasks when a pull request targeting the develop or release branch is created or updated.
57
42
# In order to have better coverage we run desktop standalone tests with different configurations which allows to mostly cover for different platforms, scripting backends and editor versions.
58
-
# This job will FIRST run "run_quick_checks" jobs (defined in _run-all.yml) which runs the fastest checks (like PVP or code standards) and ONLY IF those pass it will run the rest of the tests.
43
+
# This job will FIRST run "run_quick_checks" jobs (defined in _run-all.yml) since it's the dependency of project pack jobs which is on the lowest dependency tier. This runs the fastest checks (like PVP or code standards) and ONLY IF those pass it will run the rest of the tests.
59
44
# This optimization allows to speed up feedback look for any "obvious" errors and save resources.
60
-
# THIS JOB WILL NOT RUN IF THE INITIAL JOB FAILS (the one above. For example if the code standards fail)
# Run fast checks that allow for detection of the simplest issues (Needs to be included as dependency to make the expression at the bottom of this job possible)
- npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm # upm-ci is not preinstalled on the image so we need to download it
0 commit comments