mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
b1527d5581
* fixes verbosity option when set through command line * adds support for build type and allows to run gdb in container * adds missing toolchain headers to project * renames container macros * adds gdbserver * fixes verbosity option when set through command line * adds support for build type and allows to run gdb in container * adds missing toolchain headers to project * renames container macros * adds gdbserver * removes language settings, which contains alternating values * adds wrapper script to launch gdbserver * fix docker command in wrapper script * fixes run in dind setup * replaces docker's init through dump-init
26 lines
607 B
YAML
26 lines
607 B
YAML
language: minimal
|
|
services:
|
|
- docker
|
|
addons:
|
|
apt:
|
|
update: true
|
|
packages:
|
|
- curl
|
|
- openssl
|
|
- ca-certificates
|
|
- make
|
|
- qemu-user-static
|
|
env:
|
|
global:
|
|
- PARALLELMFLAGS="-j2"
|
|
- PORTABLE_WORSPACE=1
|
|
matrix:
|
|
- BUILDTYPE=Debug MARCH=amd64 CHECK_TARGET=memcheck
|
|
- BUILDTYPE=Release MARCH=amd64 CHECK_TARGET=memcheck
|
|
- BUILDTYPE=Debug MARCH=arm32v7 CHECK_TARGET=check
|
|
- BUILDTYPE=MinSizeRel MARCH=arm32v7 CHECK_TARGET=check
|
|
before_script:
|
|
- make BUILDTYPE=$BUILDTYPE MARCH=$MARCH
|
|
script:
|
|
- make BUILDTYPE=$BUILDTYPE MARCH=$MARCH $CHECK_TARGET
|