Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Opus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
Opus
Commits
3b147202
Verified
Commit
3b147202
authored
1 year ago
by
Marcus Asteborg
Committed by
Jean-Marc Valin
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Github actions for neural fec
parent
d819cde5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#3816
failed
1 year ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/build.yml
+136
-0
136 additions, 0 deletions
.github/workflows/build.yml
with
136 additions
and
0 deletions
.github/workflows/build.yml
0 → 100644
+
136
−
0
View file @
3b147202
name
:
Opus Neural FEC Build Matrix
on
:
[
push
,
pull_request
]
jobs
:
CheckTrailingWhiteSpaces
:
name
:
Check trailing white spaces
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v3
with
:
fetch-depth
:
0
submodules
:
recursive
-
name
:
Check Whitespaces
run
:
|
git diff-tree --check origin/master HEAD
CMakeBuild
:
name
:
CMake/${{ matrix.config.name }}
runs-on
:
${{ matrix.config.os }}
strategy
:
fail-fast
:
false
matrix
:
config
:
-
{
name
:
"
Windows/Lib/X64/Release"
,
os
:
windows-latest
,
config
:
Release
,
args
:
-G "Visual Studio 17 2022" -DOPUS_X86_PRESUME_AVX2=ON
}
-
{
name
:
"
Windows/Lib/armv8/Release"
,
os
:
windows-latest
,
config
:
Release
,
args
:
-G "Visual Studio 17 2022" -A ARM64
}
-
{
name
:
"
Linux/Lib/X64/Release"
,
os
:
ubuntu-latest
,
config
:
Release
,
args
:
-DOPUS_X86_PRESUME_AVX2=ON
}
-
{
name
:
"
Android/Lib/X64/Release"
,
os
:
ubuntu-latest
,
config
:
Release
,
args
:
"
-DCMAKE_TOOLCHAIN_FILE=${ANDROID_HOME}/ndk/25.2.9519653/build/cmake/android.toolchain.cmake
-DANDROID_ABI=x86_64"
}
-
{
name
:
"
Android/Lib/ARMv8/Release"
,
os
:
ubuntu-latest
,
config
:
Release
,
args
:
"
-DCMAKE_TOOLCHAIN_FILE=${ANDROID_HOME}/ndk/25.2.9519653/build/cmake/android.toolchain.cmake
-DANDROID_ABI=arm64-v8a"
}
-
{
name
:
"
MacOSX/Lib/X64/Release"
,
os
:
macos-latest
,
config
:
Release
,
# some macs are really old in githubs lab so they don't support avx
args
:
-DOPUS_X86_PRESUME_AVX2=OFF
}
-
{
name
:
"
iOS/Lib/arm64/Release"
,
os
:
macos-latest
,
config
:
Release
,
args
:
-G "Unix Makefiles" -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_ARCHITECTURES=arm64
}
steps
:
-
uses
:
actions/checkout@v3
with
:
fetch-depth
:
0
-
name
:
Pull git submodules
run
:
git submodule update --init --recursive
-
name
:
Install AutoConf, AutoMake and LibTool
# Needed for autogen.sh
if
:
matrix.config.os == 'macos-latest'
run
:
brew install autoconf automake libtool
-
name
:
Download models Windows
if
:
contains(matrix.config.name, 'Windows')
run
:
.\autogen.bat
-
name
:
Submodule init and Download models
if
:
contains(matrix.config.name, 'MacOSX') ||
contains(matrix.config.name, 'Linux') ||
contains(matrix.config.name, 'Android') ||
contains(matrix.config.name, 'iOS')
run
:
./autogen.sh
-
name
:
Create Work Dir
run
:
mkdir build
-
name
:
Configure
working-directory
:
./build
run
:
cmake .. ${{ matrix.config.args }} -DCMAKE_BUILD_TYPE=${{ matrix.config.config }} -DOPUS_BUILD_PROGRAMS=ON -DBUILD_TESTING=ON -DOPUS_FAST_MATH=ON -DOPUS_FLOAT_APPROX=ON -DOPUS_NEURAL_FEC=ON
-
name
:
Build
working-directory
:
./build
run
:
cmake --build . -j 2 --config ${{ matrix.config.config }} --target package
-
name
:
Test
if
:
contains(matrix.config.name, 'Windows') && !contains(matrix.config.name, 'ARM') && !contains(matrix.config.name, 'Dll') ||
contains(matrix.config.name, 'MacOSX') && !contains(matrix.config.name, 'ARM') && !contains(matrix.config.name, 'Dll') ||
contains(matrix.config.name, 'Linux') && !contains(matrix.config.name, 'ARM') && !contains(matrix.config.name, 'Dll')
working-directory
:
./build
run
:
ctest -j 2 -C ${{ matrix.config.config }} --output-on-failure
AutoMakeBuild
:
name
:
AutoMake/${{ matrix.config.name }}
runs-on
:
${{ matrix.config.os }}
strategy
:
fail-fast
:
false
matrix
:
config
:
-
{
name
:
"
Linux/GCC"
,
os
:
ubuntu-latest
,
compiler
:
gcc
,
automakeconfig
:
}
-
{
name
:
"
Linux/Clang"
,
os
:
ubuntu-latest
,
compiler
:
clang
,
automakeconfig
:
}
steps
:
-
uses
:
actions/checkout@v3
with
:
fetch-depth
:
0
-
name
:
Pull git submodules
run
:
git submodule update --init --recursive
-
name
:
Install AutoConf, AutoMake and LibTool on MacOSX
if
:
matrix.config.os == 'macos-latest'
run
:
brew install autoconf automake libtool
-
name
:
Autogen
run
:
CC=${{ matrix.config.compiler }} ./autogen.sh
-
name
:
Configure
run
:
CFLAGS="-mavx -mfma -mavx2 -O2 -ffast-math" ./configure --enable-float-approx
-
name
:
Build
run
:
make -j
2
-
name
:
Test
run
:
make check -j 2
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment