We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ec56f8 commit ca489a4Copy full SHA for ca489a4
.github/workflows/ci.yaml
@@ -17,18 +17,16 @@ jobs:
17
runs-on: ${{ matrix.os }}
18
steps:
19
- uses: actions/checkout@v4
20
+
21
+ - name: Run sccache-cache
22
+ uses: mozilla-actions/sccache-action@v0.0.7
23
24
- name: Tap ffmpeg
25
run: |
26
brew tap homebrew-ffmpeg/ffmpeg
- - name: Run sccache-cache
- uses: mozilla-actions/sccache-action@v0.0.7
27
- - name: Set Environment Variables
28
+ - name: Install ffmpeg
29
+ env:
30
+ CC: sccache clang
31
- echo "CC=sccache clang" >> $GITHUB_ENV
- echo "CXX=sccache clang++" >> $GITHUB_ENV
-
- - uses: gerlero/brew-install@v1
32
- with:
33
- packages: homebrew-ffmpeg/ffmpeg/ffmpeg
34
+ brew install homebrew-ffmpeg/ffmpeg/ffmpeg
0 commit comments