mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
[CI] Add homebrew bins to path
This commit is contained in:
parent
9f13c937b3
commit
b74a1a5731
|
@ -6,7 +6,7 @@ test-uvg266: &test-template
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- bash .travis-install.bash
|
- bash .travis-install.bash
|
||||||
- export PATH="${HOME}/bin:${PATH}"
|
- export PATH="/opt/homebrew/bin/:${HOME}/bin:${PATH}"
|
||||||
- cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=./ . || (cat config.log && false)
|
- cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=./ . || (cat config.log && false)
|
||||||
- make install
|
- make install
|
||||||
- env CTEST_PARALLEL_LEVEL=8 CTEST_OUTPUT_ON_FAILURE=1 make test
|
- env CTEST_PARALLEL_LEVEL=8 CTEST_OUTPUT_ON_FAILURE=1 make test
|
||||||
|
|
|
@ -6,6 +6,8 @@ set -euvo pipefail
|
||||||
|
|
||||||
mkdir -p "${HOME}/bin"
|
mkdir -p "${HOME}/bin"
|
||||||
|
|
||||||
|
export PATH="/opt/homebrew/bin/:${PATH}"
|
||||||
|
|
||||||
if [ "$(uname)" == "Darwin" ]; then
|
if [ "$(uname)" == "Darwin" ]; then
|
||||||
wget http://ultravideo.fi/ffmpeg-release-7.0-static-applesilicon.tar.xz
|
wget http://ultravideo.fi/ffmpeg-release-7.0-static-applesilicon.tar.xz
|
||||||
sha256sum -c - << EOF
|
sha256sum -c - << EOF
|
||||||
|
|
Loading…
Reference in a new issue