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

Commit f043a0e

Browse files
committed
Fix build scripts & update workflows
1 parent 897200d commit f043a0e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
shell: bash
2121
run: |
2222
bash build-with-docker.sh
23-
# - uses: actions/upload-artifact@master
24-
# with:
25-
# name: ffmpeg-linux
26-
# path: ffmpeg
23+
- uses: actions/upload-artifact@master
24+
with:
25+
name: ffmpeg-linux
26+
path: wasm/dist
2727
macos-build:
2828
runs-on: macos-latest
2929
steps:
@@ -42,10 +42,10 @@ jobs:
4242
shell: bash
4343
run: |
4444
bash build.sh
45-
# - uses: actions/upload-artifact@master
46-
# with:
47-
# name: ffmpeg-macos
48-
# path: ffmpeg
45+
- uses: actions/upload-artifact@master
46+
with:
47+
name: ffmpeg-macos
48+
path: wasm/dist
4949
# Not working with error messsage:
5050
# C:\ProgramData\Chocolatey\lib\mingw\tools\install\mingw64\x86_64-w64-mingw32\bin\ar.exe: libavfilter/vsink_null: No such file or directory
5151
# windows-build:

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ROOT=$(dirname $0)
77
# verify Emscripten version
88
emcc -v
99
# configure FFmpeg with Emscripten
10-
# $ROOT/wasm/build-scripts/configure.sh
10+
$ROOT/wasm/build-scripts/configure.sh
1111
# build dependencies
12-
# $ROOT/wasm/build-scripts/make.sh
12+
$ROOT/wasm/build-scripts/make.sh
1313
# build ffmpeg.wasm
1414
$ROOT/wasm/build-scripts/build-ffmpeg.sh

0 commit comments

Comments
 (0)