Skip to content

Commit d04c1a9

Browse files
committed
pipeline
1 parent f98b00e commit d04c1a9

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform: darwin
1+
platform: freebsd
22

33
# image_resource:
44
# type: docker-image
@@ -9,5 +9,4 @@ inputs:
99
path: postgresql
1010

1111
run:
12-
path: pwd
13-
#postgresql/check
12+
path: postgresql/check.sh

check.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
#!/bin/sh
1+
#!/usr/local/bin/bash
2+
23
set -e -x
34

45
export CFLAGS="-O0"
56

6-
./configure --enable-debug --enable-cassert --enable-tap-tests --enable-depend
7+
cd postgresql
78

8-
make check
9+
./configure --enable-debug --enable-cassert --enable-tap-tests --enable-depend
910

11+
make -j4
1012

13+
gmake check

0 commit comments

Comments
 (0)