Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
c8d7074d
Commit
c8d7074d
authored
Oct 29, 2020
by
Jerome Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove test and fix mac in CI/CD
parent
1c825870
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
15 deletions
+12
-15
main.yml
.github/workflows/main.yml
+0
-3
install-deps.sh
wasm/build-scripts/install-deps.sh
+12
-12
No files found.
.github/workflows/main.yml
View file @
c8d7074d
...
...
@@ -22,9 +22,6 @@ jobs:
shell
:
bash
run
:
|
bash build-with-docker.sh
-
name
:
Run Tests
run
:
|
cd wasm && npm install && npm test
-
uses
:
actions/upload-artifact@master
with
:
name
:
ffmpeg-core-linux
...
...
wasm/build-scripts/install-deps.sh
View file @
c8d7074d
#!/bin/bash
missingCmds
=(
)
cmds
=(
autoconf libtool
)
for
cmd
in
autoconf libtool
do
if
!
command
-v
$cmd
&> /dev/null
then
missingCmds+
=(
"
$cmd
"
)
fi
done
#
for cmd in autoconf libtool
#
do
#
if ! command -v $cmd &> /dev/null
#
then
#
missingCmds+=("$cmd")
#
fi
#
done
if
[
${#
missingCmds
[@]
}
-ne
0
]
;
then
echo
"Install missing dependencies"
if
[[
"
$OSTYPE
"
==
"linux-gnu"
*
]]
;
then
apt-get update
apt-get
install
-y
${
missingCmds
[@]
}
apt-get
install
-y
${
cmds
[@]
}
else
brew
install
${
cmds
[@]
}
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment