Skip to content

Commit

Permalink
Don't fail on failing post-install steps
Browse files Browse the repository at this point in the history
  • Loading branch information
arch1t3cht committed Nov 2, 2023
1 parent 5d2d16f commit 3a9e46c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
os: macos-latest,
host: arm64,
buildtype: release,
args: --cross-file arm64-apple-macos11.txt -Ddefault_library=static -Dbuild_osx_bundle=true -Dlocal_boost=true -Dvapoursynth=enabled --force-fallback-for=ffms2
args: --cross-file arm64-apple-macos12.txt -Ddefault_library=static -Dbuild_osx_bundle=true -Dlocal_boost=true -Dvapoursynth=enabled --force-fallback-for=ffms2
}

steps:
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
echo "Installing $1"
${armbrew} fetch --force --bottle-tag=${arch} "$1"
${armbrew} install "$(${armbrew} --cache --bottle-tag=${arch} "$1")"
${armbrew} install "$(${armbrew} --cache --bottle-tag=${arch} "$1")" || true # we don't care if post-install steps like fc-cache fail
}
for package in libass zlib ffmpeg fftw hunspell pulseaudio ; do
Expand All @@ -192,7 +192,7 @@ jobs:
- name: Set up cross file (arm64)
if: matrix.config.os == 'macos-latest' && matrix.config.host == 'arm64'
run: |
cat <<EOT > arm64-apple-macos11.txt
cat <<EOT > arm64-apple-macos12.txt
[binaries]
c = 'cc'
cpp = 'c++'
Expand Down

0 comments on commit 3a9e46c

Please sign in to comment.