-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use brew to install ffmpeg * add ffmpeg to path * source profile * add ffprobe check * test access to ffmpeg and ffprobe * test access to ffmpeg and ffprobe * test access to ffprobe * test macos-latest-large * see error for ffprobe * move path export ot test block * remove errant line * test just macos * make things run again * clunky workaround * put ubuntu back; fix syntax * add brew to path * use different frame rate and use default config * use 32 fps * use 30 fps * format * test fix for densepose * single bracket * add macosx deployment target to env * uncomment out tests; put env var in own step for clarity * unpin botocore * remove botocore
- Loading branch information
Showing
3 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,14 +56,21 @@ jobs: | |
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup FFmpeg | ||
uses: Iamshankhadeep/[email protected] | ||
- if: matrix.os == 'ubuntu-latest' | ||
name: Setup FFmpeg | ||
uses: Iamshankhadeep/[email protected] # does not support arm64 | ||
with: | ||
# Not strictly necessary, but it may prevent rate limit | ||
# errors especially on GitHub-hosted macos machines. | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
version: "4.4" | ||
|
||
- if: matrix.os == 'macos-latest' | ||
name: Setup FFmpeg | ||
run: | | ||
brew install ffmpeg@4 | ||
echo "/opt/homebrew/opt/ffmpeg@4/bin" >> $GITHUB_PATH | ||
- name: Configure Windows compilers | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
|
||
|
@@ -80,6 +87,11 @@ jobs: | |
run: | | ||
make tests | ||
- if: matrix.os == 'macos-latest' | ||
name: Specify MacOS version for densepose install | ||
run: | | ||
echo "MACOSX_DEPLOYMENT_TARGET=$(sw_vers -productVersion)" >> $GITHUB_ENV | ||
- name: Run densepose tests | ||
env: | ||
ZAMBA_RUN_DENSEPOSE_TESTS: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters