Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit e3ccda1

Browse files
committed
Disable mac build in github actions
1 parent 12c78a7 commit e3ccda1

File tree

1 file changed

+28
-26
lines changed

1 file changed

+28
-26
lines changed

.github/workflows/main.yml

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -27,32 +27,34 @@ jobs:
2727
with:
2828
name: ffmpeg-core-linux
2929
path: wasm/dist
30-
macos-build:
31-
runs-on: macos-latest
32-
steps:
33-
- uses: actions/checkout@v2
34-
with:
35-
fetch-depth: 0
36-
submodules: recursive
37-
- name: Setup cache
38-
id: cache-system-libraries
39-
uses: actions/cache@v2
40-
with:
41-
path: ${{env.EM_CACHE_FOLDER}}
42-
key: ${{env.EM_VERSION}}-${{ runner.os }}
43-
- uses: mymindstorm/setup-emsdk@v6
44-
with:
45-
version: ${{env.EM_VERSION}}
46-
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
47-
- name: Build FFMpeg
48-
shell: bash
49-
run: |
50-
export PATH=$PATH:$PWD/emsdk-cache/emsdk-master/upstream/bin
51-
bash build.sh
52-
- uses: actions/upload-artifact@master
53-
with:
54-
name: ffmpeg-core-macos
55-
path: wasm/dist
30+
# Disable macos build due to there is no ldconfig command
31+
# during freetype2 build.
32+
# macos-build:
33+
# runs-on: macos-latest
34+
# steps:
35+
# - uses: actions/checkout@v2
36+
# with:
37+
# fetch-depth: 0
38+
# submodules: recursive
39+
# - name: Setup cache
40+
# id: cache-system-libraries
41+
# uses: actions/cache@v2
42+
# with:
43+
# path: ${{env.EM_CACHE_FOLDER}}
44+
# key: ${{env.EM_VERSION}}-${{ runner.os }}
45+
# - uses: mymindstorm/setup-emsdk@v6
46+
# with:
47+
# version: ${{env.EM_VERSION}}
48+
# actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
49+
# - name: Build FFMpeg
50+
# shell: bash
51+
# run: |
52+
# export PATH=$PATH:$PWD/emsdk-cache/emsdk-master/upstream/bin
53+
# bash build.sh
54+
# - uses: actions/upload-artifact@master
55+
# with:
56+
# name: ffmpeg-core-macos
57+
# path: wasm/dist
5658
# Not working with error messsage:
5759
# C:\ProgramData\Chocolatey\lib\mingw\tools\install\mingw64\x86_64-w64-mingw32\bin\ar.exe: libavfilter/vsink_null: No such file or directory
5860
# windows-build:

0 commit comments

Comments
 (0)