We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2326e20 commit 4db5952Copy full SHA for 4db5952
1 file changed
.github/workflows/build_wasm_postgres.yml
@@ -0,0 +1,39 @@
1
+name: Build postgres-pglite (aka Postgresql WASM)
2
+
3
+permissions:
4
+ pull-requests: write
5
+ issues: write
6
+ contents: read
7
8
+on:
9
+ workflow_call:
10
+ push:
11
+ branches: ['pglite/REL_16_STABLE']
12
+ pull_request:
13
14
+jobs:
15
+ build:
16
+ name: Build postgres-pglite (WASM Postgres)
17
+ runs-on: ubuntu-22.04
18
+ env:
19
+ BUILD_CONFIG_FILE: pglite/.buildconfig
20
+ PGROOT: /tmp/pglite
21
+ TOTAL_MEMORY: 128MB
22
+ CMA_MB: 16
23
+ DEBUG: false
24
+ OBJDUMP: true
25
+ contrib: contrib
26
+ extra: extra
27
+ EXTRA_EXT: vector
28
29
+ steps:
30
+ - uses: actions/checkout@v4
31
+ with:
32
+ fetch-depth: 1
33
34
+ - name: Build postgres WASM via emsdk
35
+ working-directory: ${{ github.workspace }}
36
37
+ PGSRC: ${{ github.workspace }}
38
+ run: |
39
+ pglite/cibuild/build-with-docker.sh
0 commit comments