Sun, 30 Jul 2017 16:32:59 -0500
Fix a typo
|
38030
24a306f26d2c
add a bitbucket-pipelines.yml file to build and run unittests under debian stretch
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
1 | # vi:et:ts=2 sw=2 sts=2 |
|
24a306f26d2c
add a bitbucket-pipelines.yml file to build and run unittests under debian stretch
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
2 | image: pidgin/builder-debian:stretch |
|
24a306f26d2c
add a bitbucket-pipelines.yml file to build and run unittests under debian stretch
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
3 | pipelines: |
|
24a306f26d2c
add a bitbucket-pipelines.yml file to build and run unittests under debian stretch
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
4 | default: |
|
24a306f26d2c
add a bitbucket-pipelines.yml file to build and run unittests under debian stretch
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
5 | - step: |
|
24a306f26d2c
add a bitbucket-pipelines.yml file to build and run unittests under debian stretch
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
6 | script: |
|
24a306f26d2c
add a bitbucket-pipelines.yml file to build and run unittests under debian stretch
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
7 | - set -ex |
|
38144
f30b0d8e1f64
bitbucket-pipelines.yml: Remove --disable-kwallet as image supports it
Mike Ruprecht <cmaiku@gmail.com>
parents:
38040
diff
changeset
|
8 | - ./autogen.sh --enable-debug --enable-gtk-doc |
|
38039
8cf47ff9be6e
use nproc instead of parsing /proc/cpuinfo
Gary Kramlich <grim@reaperworld.com>
parents:
38038
diff
changeset
|
9 | - make -s -j$(nproc) |
|
38180
443e8d364db7
bitbucket-pipelines.yml: Change `make check` to `make distcheck`
Mike Ruprecht <cmaiku@gmail.com>
parents:
38144
diff
changeset
|
10 | - make -s -j$(nproc) distcheck |
|
38149
d092152c84c9
Add a pipelines entry for the release-2.x.y branch
Gary Kramlich <grim@reaperworld.com>
parents:
38040
diff
changeset
|
11 | branches: |
|
d092152c84c9
Add a pipelines entry for the release-2.x.y branch
Gary Kramlich <grim@reaperworld.com>
parents:
38040
diff
changeset
|
12 | release-2.x.y: |
|
d092152c84c9
Add a pipelines entry for the release-2.x.y branch
Gary Kramlich <grim@reaperworld.com>
parents:
38040
diff
changeset
|
13 | - step: |
|
d092152c84c9
Add a pipelines entry for the release-2.x.y branch
Gary Kramlich <grim@reaperworld.com>
parents:
38040
diff
changeset
|
14 | image: pidgin/release-builder:release-2.x.y |
|
d092152c84c9
Add a pipelines entry for the release-2.x.y branch
Gary Kramlich <grim@reaperworld.com>
parents:
38040
diff
changeset
|
15 | script: |
|
d092152c84c9
Add a pipelines entry for the release-2.x.y branch
Gary Kramlich <grim@reaperworld.com>
parents:
38040
diff
changeset
|
16 | - set -ex |
|
38150
f96783650fd6
we really only need to enable debug here
Gary Kramlich <grim@reaperworld.com>
parents:
38149
diff
changeset
|
17 | - ./autogen.sh --enable-debug |
|
38149
d092152c84c9
Add a pipelines entry for the release-2.x.y branch
Gary Kramlich <grim@reaperworld.com>
parents:
38040
diff
changeset
|
18 | - make -s -j$(nproc) |
|
d092152c84c9
Add a pipelines entry for the release-2.x.y branch
Gary Kramlich <grim@reaperworld.com>
parents:
38040
diff
changeset
|
19 | - make -s -j$(nproc) check |
|
d092152c84c9
Add a pipelines entry for the release-2.x.y branch
Gary Kramlich <grim@reaperworld.com>
parents:
38040
diff
changeset
|
20 | - make distcheck |
|
38030
24a306f26d2c
add a bitbucket-pipelines.yml file to build and run unittests under debian stretch
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
21 |