-
Notifications
You must be signed in to change notification settings - Fork 437
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
885ee9f
commit 710054e
Showing
2 changed files
with
14 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,19 @@ | ||
{% metadata_file .yamato/project.metafile %} | ||
--- | ||
|
||
# Ubuntu is used for this job because of better performance for simple operations | ||
{% for project in projects -%} | ||
{% for platform in test_platforms -%} | ||
{% if platform.name == "ubuntu" -%} | ||
pack_{{ project.name }}: | ||
name: Pack {{ project.name }} | ||
agent: | ||
type: {{ platform.type }} | ||
image: {{ platform.image }} | ||
flavor: {{ platform.flavor }} | ||
type: {{ test_platforms[0].type }} | ||
image: {{ test_platforms[0].image }} | ||
flavor: {{ test_platforms[0].flavor }} | ||
commands: | ||
- npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm | ||
- upm-ci project pack --project-path {{ project.path }} | ||
artifacts: | ||
packages: | ||
paths: | ||
- "upm-ci~/packages/**/*" | ||
{% endif -%} | ||
{% endfor -%} | ||
{% endfor -%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters