aboutsummaryrefslogtreecommitdiffstats
path: root/.yatr.yml
blob: 244b9fa31d785c21984f09e3eee3cd2d315dfb80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
default_configure_args:
  - "CFLAGS=-Wall -g -O0"
  - --disable-silent-rules
  - --disable-valgrind
  - --enable-ronn
  - --enable-tests
  - --enable-git-receiver
  - --enable-make
  - --enable-runserver

targets:
  dist-srpm:
    configure_args:
      - --disable-tests
    archive_filter: "*.src.rpm"
  clang-analyzer:
    configure_args:
      - --enable-silent-rules
      - --disable-tests
    task_script: build-aux/clang-analyzer.sh
    archive_extract_filter: "*.tar.xz"
    publish_on_failure: true
  valgrind:
    configure_args:
      - --enable-valgrind
  check-make-embedded:
    configure_args:
      - --disable-git-receiver
      - --disable-runserver
      - --enable-make-embedded
    task_script: build-aux/check-make-embedded.sh
  static:
    configure_args:
      - "CFLAGS=-Wall -g -O2"
      - --disable-tests
      - --disable-git-receiver
      - --disable-runserver
      - --enable-make-embedded
    task_script: build-aux/build-static.sh
  static-all:
    configure_args:
      - "CFLAGS=-Wall -g -O2"
      - --disable-tests
      - --prefix=/
    task_script: build-aux/build-static-all.sh
  win32:
    configure_args:
      - CC=
      - "CFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4"
      - --host=i686-w64-mingw32
      - --target=i686-w64-mingw32
      - --disable-tests
      - --disable-git-receiver
      - --disable-make
      - --disable-runserver
    task_script: build-aux/build-windows.sh
  win64:
    configure_args:
      - CC=
      - "CFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4"
      - --host=x86_64-w64-mingw32
      - --target=x86_64-w64-mingw32
      - --disable-tests
      - --disable-git-receiver
      - --disable-make
      - --disable-runserver
    task_script: build-aux/build-windows.sh
  deb-bullseye-amd64:
    task_script: build-aux/build-debian.sh
    archive_extract_filter: "blogc-deb-*.tar.xz"
  deb-bookworm-amd64:
    task_script: build-aux/build-debian.sh
    archive_extract_filter: "blogc-deb-*.tar.xz"
  deb-sid-amd64:
    task_script: build-aux/build-debian.sh
    archive_extract_filter: "blogc-deb-*.tar.xz"
  deb-focal-amd64:
    task_script: build-aux/build-debian.sh
    archive_extract_filter: "blogc-deb-*.tar.xz"
  deb-jammy-amd64:
    task_script: build-aux/build-debian.sh
    archive_extract_filter: "blogc-deb-*.tar.xz"
  deb-kinetic-amd64:
    task_script: build-aux/build-debian.sh
    archive_extract_filter: "blogc-deb-*.tar.xz"