File: task.yaml

package info (click to toggle)
wlcs 1.8.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,528 kB
  • sloc: cpp: 14,211; xml: 7,744; ansic: 952; sh: 164; makefile: 33
file content (22 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
summary: Build (on Alpine Linux)
systems: [alpine-*]

execute: |
    apk add \
        coreutils \
        make \
        g++ \
        wayland-dev \
        cmake \
        boost-dev \
        gtest-dev

    cd $SPREAD_PATH
    cd $(mktemp --directory)
    # Alpine doesn't build gcc's libsanitizer
    cmake $SPREAD_PATH \
        -DWLCS_BUILD_ASAN=False \
        -DWLCS_BUILD_TSAN=False \
        -DWLCS_BUILD_UBSAN=False
    make -j$(nproc)