Skip to content

Commit f4d0128

Browse files
committed
Update build scripts
1 parent 721eaf9 commit f4d0128

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

build.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
2+
3+
# This script is used to build FDW binaries for Darwin and Linux. Should be used to build
4+
# and update FDW locally.
5+
26
cd fdw
37
make clean
48
make go

build_binary.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
3+
# This script is used to build FDW binaries for Darwin and Linux. Should be used in release
4+
# workflows. Running this locally would just create the binaries, not update them in your system.
5+
6+
cd fdw
7+
make clean
8+
make go
9+
make
10+
make inst
11+
cd -
12+
13+
#pg_ctl -D /usr/local/var/postgres restart
14+
#psql postgres

0 commit comments

Comments
 (0)