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 721eaf9 commit f4d0128Copy full SHA for f4d0128
build.sh
@@ -1,4 +1,8 @@
1
#!/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
6
cd fdw
7
make clean
8
make go
build_binary.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env bash
+# This script is used to build FDW binaries for Darwin and Linux. Should be used in release
+# workflows. Running this locally would just create the binaries, not update them in your system.
+cd fdw
+make clean
+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