-
Notifications
You must be signed in to change notification settings - Fork 19
117 lines (101 loc) · 3.47 KB
/
deploy-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: Deploy Release
on:
workflow_dispatch:
jobs:
build-mdl-sdk:
name: Build MDL SDK
uses: pablode/MDL-SDK/.github/workflows/[email protected]
with:
cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
build-usd2502:
name: Build gatling for USD v25.02
needs: build-mdl-sdk
uses: ./.github/workflows/build-usd.yml
with:
usd-version: 25.02
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
upload-install-artifacts: true
run-graphical-tests: true
build-usd2411:
name: Build gatling for USD v24.11
needs: build-mdl-sdk
uses: ./.github/workflows/build-usd.yml
with:
usd-version: 24.11
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
upload-install-artifacts: true
run-graphical-tests: true
build-usd2408:
name: Build gatling for USD v24.08
needs: build-mdl-sdk
uses: ./.github/workflows/build-usd.yml
with:
usd-version: 24.08
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
upload-install-artifacts: true
run-graphical-tests: true
build-usd2405:
name: Build gatling for USD v24.05
needs: build-mdl-sdk
uses: ./.github/workflows/build-usd.yml
with:
usd-version: 24.05
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
upload-install-artifacts: true
build-usd2403:
name: Build gatling for USD v24.03
needs: build-mdl-sdk
uses: ./.github/workflows/build-usd.yml
with:
usd-version: 24.03
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
upload-install-artifacts: true
build-houdini20:
name: Build gatling for Houdini 20.0
needs: build-mdl-sdk
uses: ./.github/workflows/build-houdini20.yml
with:
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
deploy-release:
name: Deploy Release
needs: [build-usd2502, build-usd2411, build-usd2408, build-usd2405, build-usd2403, build-houdini20]
runs-on: ubuntu-latest
steps:
- name: Download artifacts for USD v25.02
uses: actions/download-artifact@v3
with:
name: ${{ needs.build-usd2502.outputs.archive-name }}
- name: Download artifacts for USD v24.11
uses: actions/download-artifact@v4
with:
pattern: ${{ needs.build-usd2411.outputs.archive-name }}*
merge-multiple: true
- name: Download artifacts for USD v24.08
uses: actions/download-artifact@v4
with:
pattern: ${{ needs.build-usd2408.outputs.archive-name }}*
merge-multiple: true
- name: Download artifacts for USD v24.05
uses: actions/download-artifact@v4
with:
pattern: ${{ needs.build-usd2405.outputs.archive-name }}*
merge-multiple: true
- name: Download artifacts for USD v24.03
uses: actions/download-artifact@v4
with:
pattern: ${{ needs.build-usd2403.outputs.archive-name }}*
merge-multiple: true
- name: Download artifacts for Houdini 20.0
uses: actions/download-artifact@v4
with:
pattern: ${{ needs.build-houdini20.outputs.archive-name }*}
merge-multiple: true
- name: Deploy draft release
uses: softprops/action-gh-release@d4e8205d7e959a9107da6396278b2f1f07af0f9b
with:
name: "Version XXX"
body: "TBD"
files: |
*.tar.gz
fail_on_unmatched_files: true
draft: true