Skip to content

Commit

Permalink
Moved houdini workflow back into build.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Avramoussis <[email protected]>
  • Loading branch information
Idclip committed Nov 14, 2020
1 parent 9a5eb89 commit 5e1d0fd
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 65 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,43 @@ jobs:
./ci/test.sh
./ci/test_install.sh
linux-vfx-houdini:
runs-on: ubuntu-16.04
name: hou:${{ matrix.config.hou }}-vfx:${{ matrix.config.image }}-cxx:${{ matrix.config.cxx }}
container:
image: aswf/ci-base:${{ matrix.config.image }}
env:
CXX: ${{ matrix.config.cxx }}
strategy:
matrix:
config:
- { cxx: clang++, image: '2018', hou: '17_5', build: 'Release', extras: 'ON' }
- { cxx: clang++, image: '2019', hou: '18_0', build: 'Release', extras: 'ON' }
- { cxx: clang++, image: '2020', hou: '18_5', build: 'Release', extras: 'ON' }
- { cxx: clang++, image: '2019', hou: '18_5', build: 'Debug', extras: 'OFF' }
- { cxx: g++, image: '2019', hou: '18_5', build: 'Release', extras: 'OFF' }
fail-fast: false
steps:
- uses: actions/checkout@v1
- name: install_cmake
if: matrix.config.image == '2018'
run: ./ci/install_cmake.sh 3.12.0
- name: fetch_houdini
uses: actions/cache@v2
with:
path: hou
key: vdb1-houdini${{ matrix.config.hou }}-${{ hashFiles('hou/hou.tar.gz') }}
restore-keys: vdb1-houdini${{ matrix.config.hou }}-
- name: validate_houdini
if: github.repository_owner == 'AcademySoftwareFoundation'
run: test -f "hou/hou.tar.gz"
- name: houdini
run: ./ci/install_houdini.sh
- name: build
run: ./ci/build_houdini.sh ${{ matrix.config.build }} ${{ matrix.config.extras }}
- name: test
run: ./ci/test.sh

testabi7lite:
runs-on: ubuntu-16.04
env:
Expand Down
64 changes: 0 additions & 64 deletions .github/workflows/houdini.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
| --------------- | ------ |
| OpenVDB | [![Build](https://github.com/AcademySoftwareFoundation/openvdb/workflows/Build/badge.svg)](https://github.com/AcademySoftwareFoundation/openvdb/actions?query=workflow%3ABuild) |
| OpenVDB AX | [![ax](https://github.com/AcademySoftwareFoundation/openvdb/workflows/ax/badge.svg)](https://github.com/AcademySoftwareFoundation/openvdb/actions?query=workflow%3Aax) |
| OpenVDB Houdini | [![Houdini](https://github.com/AcademySoftwareFoundation/openvdb/workflows/Houdini/badge.svg)](https://github.com/AcademySoftwareFoundation/openvdb/actions?query=workflow%3AHoudini) |

[Website](https://www.openvdb.org) |
[Discussion Forum](https://www.openvdb.org/forum) |
Expand Down

0 comments on commit 5e1d0fd

Please sign in to comment.