mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
0ac03b6150
adds convenience run and discovery targets (for first build target) allows usage of host container (volume mount/ dind) fixes portable workspace configuration adds makefile targets to CDT configuration fixes localization * adds eclipse-cdt project and necessary discovery for toolchain settings * extends targets and fixes discovery * renames CDT Eclipse project * enables portable workspace docker-build on build server
22 lines
450 B
YAML
22 lines
450 B
YAML
language: minimal
|
|
services:
|
|
- docker
|
|
addons:
|
|
apt:
|
|
update: true
|
|
before_install:
|
|
- sudo apt-get install -y curl openssl ca-certificates
|
|
- sudo apt-get install -y make
|
|
- sudo apt-get install -y qemu-user-static
|
|
env:
|
|
global:
|
|
- PARALLELMFLAGS="-j2"
|
|
- PORTABLE_WORSPACE=1
|
|
matrix:
|
|
- MARCH=amd64 CHECK_TARGET=memcheck
|
|
- MARCH=arm32v7 CHECK_TARGET=check
|
|
before_script:
|
|
- make MARCH=$MARCH
|
|
script:
|
|
- make MARCH=$MARCH $CHECK_TARGET
|