Skip to content

Commit

Permalink
CI: add FreeBSD gmmlib/libva workarounds
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeich committed May 23, 2020
1 parent d32117c commit fb12f72
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,16 @@ jobs:
install:
- sudo ln -sf /usr/local/libdata/pkgconfig /usr/local/lib/
- git clone https://github.com/intel/gmmlib.git
- | # Workaround until https://github.com/intel/gmmlib/pull/68 is merged
if ! fgrep -q freebsd gmmlib/.travis.yml; then
(cd gmmlib && git fetch origin pull/68/head:freebsd && git checkout freebsd)
fi
- (cd gmmlib && cmake -B build -G Ninja && cmake --build build && sudo cmake --install build)
- git clone https://github.com/intel/libva.git
- | # Workaround until https://github.com/intel/libva/pull/363 is merged
if ! fgrep -q freebsd libva/.travis.yml; then
(cd libva && git fetch origin pull/363/head:freebsd && git checkout freebsd)
fi
- (cd libva && meson build && ninja -C build && sudo ninja -C build install)
script:
- cmake -B build -G Ninja -DBUILD_TYPE=Release -DBUILD_CMRTLIB=OFF -DMEDIA_RUN_TEST_SUITE=OFF
Expand Down

0 comments on commit fb12f72

Please sign in to comment.