-
Notifications
You must be signed in to change notification settings - Fork 22
141 lines (135 loc) · 4.68 KB
/
build_houdini.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
name: Build USD Asset Resolvers against Houdini
on:
release:
types: [released]
schedule:
- cron: '0 12 * * *'
workflow_dispatch:
concurrency:
group: "build"
cancel-in-progress: false
jobs:
build_linux:
runs-on: ubuntu-latest
environment: houdini
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Switch to latest release tag
run: |
git fetch --all --tags --force
latest_release_tag=$(git tag -l --sort=-version:refname v* | head -1)
git checkout tags/$latest_release_tag
- name: Install system packages
run: |
sudo apt-get update
sudo apt-get install -y zip
sudo apt-get install -y build-essential cmake
sudo apt-get install -y python3 python3-pip
sudo pip3 install requests
# - name: Cache Houdini
# id: cache-houdini-linux
# uses: actions/cache@v3
# with:
# path: "/opt/hfs*"
# key: ${{ runner.os }}-houdini
- name: Install Houdini
# if: steps.cache-houdini-linux.outputs.cache-hit != 'true'
env:
SIDEFX_CLIENT_ID: '${{ secrets.SIDEFX_CLIENT_ID }}'
SIDEFX_CLIENT_SECRET_KEY: '${{ secrets.SIDEFX_CLIENT_SECRET_KEY }}'
run: |
sudo --preserve-env python3 .github/scripts/houdini.py --install
- name: Build USD File Resolver
run: |
.github/scripts/houdini_build.sh fileResolver
- name: Build USD Python Resolver
run: |
.github/scripts/houdini_build.sh pythonResolver
- name: Build USD Http Resolver
run: |
.github/scripts/houdini_build.sh httpResolver
- name: Create single .zip archive
run: |
repo_root=$(cd .; pwd)
python3 .github/scripts/houdini.py --artifact --artifact_src=$repo_root/dist --artifact_dst=$repo_root/artifacts --artifact_prefix=UsdAssetResolver
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: UsdAssetResolver-Linux
path: artifacts/*.zip
build_windows:
runs-on: windows-2019
environment: houdini
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Switch to latest release tag
run: |
git fetch --all --tags --force
$latest_release_tag=git tag -l --sort=-version:refname v* | select -first 1
git checkout tags/$latest_release_tag
- name: Install system packages
run: |
pip3 install requests
# - name: Cache Houdini
# id: cache-houdini-windows
# uses: actions/cache@v3
# with:
# path: "C:\\Program Files\\Side Effects Software"
# key: ${{ runner.os }}-houdini
- name: Install Houdini
# if: steps.cache-houdini-windows.outputs.cache-hit != 'true'
env:
SIDEFX_CLIENT_ID: '${{ secrets.SIDEFX_CLIENT_ID }}'
SIDEFX_CLIENT_SECRET_KEY: '${{ secrets.SIDEFX_CLIENT_SECRET_KEY }}'
run: |
python3 .github\scripts\houdini.py --install
- name: Build USD File Resolver
run: |
.\.github\scripts\houdini_build.bat fileResolver
- name: Build USD Python Resolver
run: |
.\.github\scripts\houdini_build.bat pythonResolver
- name: Build USD Http Resolver
run: |
.\.github\scripts\houdini_build.bat httpResolver
- name: Create single .zip archive
run: |
& python $pwd\.github\scripts\houdini.py --artifact --artifact_src=$pwd\dist --artifact_dst=$pwd\artifacts --artifact_prefix=UsdAssetResolver
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: UsdAssetResolver-Windows
path: artifacts/*.zip
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
needs: [build_linux, build_windows]
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Download artifacts Linux
uses: actions/download-artifact@v3
with:
name: UsdAssetResolver-Linux
path: artifacts
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: UsdAssetResolver-Windows
path: artifacts
- name: Upload artifact as release asset
run: |
git fetch --all --tags --force
latest_release_tag=$(git tag -l --sort=-version:refname v* | head -1)
gh release upload $latest_release_tag artifacts/*.zip --clobber
env:
GITHUB_TOKEN: ${{ github.TOKEN }}