We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f98b00e commit d04c1a9Copy full SHA for d04c1a9
build.yml
@@ -1,4 +1,4 @@
1
-platform: darwin
+platform: freebsd
2
3
# image_resource:
4
# type: docker-image
@@ -9,5 +9,4 @@ inputs:
9
path: postgresql
10
11
run:
12
- path: pwd
13
- #postgresql/check
+ path: postgresql/check.sh
check.sh
@@ -1,10 +1,13 @@
-#!/bin/sh
+#!/usr/local/bin/bash
+
set -e -x
5
export CFLAGS="-O0"
6
-./configure --enable-debug --enable-cassert --enable-tap-tests --enable-depend
7
+cd postgresql
8
-make check
+./configure --enable-debug --enable-cassert --enable-tap-tests --enable-depend
+make -j4
+gmake check
0 commit comments