1 Star 1 Fork 2

via/speex

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.gitlab-ci.yml 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
Tim-Philipp Müller 提交于 2023-03-12 12:30 . ci: add meson builds
default:
tags:
- docker
# Image from https://hub.docker.com/_/gcc/ based on Debian
image: gcc:9
.autoconf:
stage: build
before_script:
- apt-get update &&
apt-get install -y libogg-dev
script:
- ./autogen.sh
- ./configure ${CONFIG_FLAGS}
- make
- make check
autoconf:
extends: .autoconf
script:
- ./autogen.sh
- ./configure ${CONFIG_FLAGS}
- make
- make distcheck
fixed-point:
extends: .autoconf
variables:
CONFIG_FLAGS: --enable-fixed-point
no-float:
extends: .autoconf
variables:
CONFIG_FLAGS: --enable-fixed-point --disable-float-api
vorbis-psy:
extends: .autoconf
variables:
CONFIG_FLAGS: --enable-vorbis-psy
no-binaries:
extends: .autoconf
variables:
CONFIG_FLAGS: --disable-binaries
.meson:
stage: build
image: 'debian:bookworm'
before_script:
- apt-get update &&
apt-get install -y libogg-dev ninja-build meson
script:
- meson setup builddir ${CONFIG_FLAGS}
- ninja -C builddir
- ninja -C builddir test
- ninja -C builddir install
meson fixed-point:
extends: .meson
variables:
CONFIG_FLAGS: -Dfixed-point=enabled
meson no-float:
extends: .meson
variables:
CONFIG_FLAGS: -Dfixed-point=enabled -Dfloat-api=disabled
meson vorbis-psy:
extends: .meson
variables:
CONFIG_FLAGS: -Dvorbis-psy=enabled
meson no-binaries:
extends: .meson
variables:
CONFIG_FLAGS: -Dtools=disabled -Dtest-binaries=disabled
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/chooosky/speex.git
git@gitee.com:chooosky/speex.git
chooosky
speex
speex
master

搜索帮助