Skip to content

Commit 5ecc250

Browse files
authored
Merge pull request #874 from danrbailey/hou185
Add Houdini 18.5 to CI
2 parents b7df2f2 + 72abd7b commit 5ecc250

File tree

1 file changed

+30
-8
lines changed

1 file changed

+30
-8
lines changed

.github/workflows/build.yml

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,28 @@ jobs:
7777
- name: test_install
7878
run: ./ci/test_install.sh
7979

80+
testhou185:
81+
runs-on: ubuntu-16.04
82+
container:
83+
image: aswf/ci-base:2020
84+
steps:
85+
- uses: actions/checkout@v1
86+
- name: fetch_houdini
87+
uses: actions/cache@v2
88+
with:
89+
path: hou
90+
key: vdb1-houdini18_5-${{ hashFiles('hou/hou.tar.gz') }}
91+
restore-keys: vdb1-houdini18_5-
92+
- name: validate_houdini
93+
if: github.repository_owner == 'AcademySoftwareFoundation'
94+
run: test -f "hou/hou.tar.gz"
95+
- name: houdini
96+
run: ./ci/install_houdini.sh
97+
- name: build
98+
run: ./ci/build_houdini.sh clang++ Release ON
99+
- name: test
100+
run: ./ci/test.sh
101+
80102
testhou180:
81103
runs-on: ubuntu-16.04
82104
container:
@@ -134,18 +156,18 @@ jobs:
134156
- name: test
135157
run: ./ci/test.sh
136158

137-
testhou180gcc:
159+
testhou185gcc:
138160
runs-on: ubuntu-16.04
139161
container:
140-
image: aswf/ci-base:2019
162+
image: aswf/ci-base:2020
141163
steps:
142164
- uses: actions/checkout@v1
143165
- name: fetch_houdini
144166
uses: actions/cache@v2
145167
with:
146168
path: hou
147-
key: vdb1-houdini18_0-${{ hashFiles('hou/hou.tar.gz') }}
148-
restore-keys: vdb1-houdini18_0-
169+
key: vdb1-houdini18_5-${{ hashFiles('hou/hou.tar.gz') }}
170+
restore-keys: vdb1-houdini18_5-
149171
- name: validate_houdini
150172
if: github.repository_owner == 'AcademySoftwareFoundation'
151173
run: test -f "hou/hou.tar.gz"
@@ -156,18 +178,18 @@ jobs:
156178
- name: test
157179
run: ./ci/test.sh
158180

159-
testhou180debug:
181+
testhou185debug:
160182
runs-on: ubuntu-16.04
161183
container:
162-
image: aswf/ci-base:2019
184+
image: aswf/ci-base:2020
163185
steps:
164186
- uses: actions/checkout@v1
165187
- name: fetch_houdini
166188
uses: actions/cache@v2
167189
with:
168190
path: hou
169-
key: vdb1-houdini18_0-${{ hashFiles('hou/hou.tar.gz') }}
170-
restore-keys: vdb1-houdini18_0-
191+
key: vdb1-houdini18_5-${{ hashFiles('hou/hou.tar.gz') }}
192+
restore-keys: vdb1-houdini18_5-
171193
- name: validate_houdini
172194
if: github.repository_owner == 'AcademySoftwareFoundation'
173195
run: test -f "hou/hou.tar.gz"

0 commit comments

Comments
 (0)