mirror of
https://github.com/waku-org/nwaku.git
synced 2025-02-25 05:15:53 +00:00
chore: Adding -d:postgres flag when creating a Docker image for release and PRs (#2076)
This commit is contained in:
parent
ed47354528
commit
7a376f59c8
2
.github/workflows/container-image.yml
vendored
2
.github/workflows/container-image.yml
vendored
@ -48,7 +48,7 @@ jobs:
|
||||
id: build
|
||||
run: |
|
||||
|
||||
make -j${NPROC} V=1 QUICK_AND_DIRTY_COMPILER=1 NIMFLAGS="-d:disableMarchNative" wakunode2
|
||||
make -j${NPROC} V=1 QUICK_AND_DIRTY_COMPILER=1 NIMFLAGS="-d:disableMarchNative -d:postgres" wakunode2
|
||||
|
||||
SHORT_REF=$(git rev-parse --short HEAD)
|
||||
|
||||
|
3
.github/workflows/pre-release.yml
vendored
3
.github/workflows/pre-release.yml
vendored
@ -66,7 +66,8 @@ jobs:
|
||||
make QUICK_AND_DIRTY_COMPILER=1 V=1 CI=false NIMFLAGS="-d:disableMarchNative --os:${OS} --cpu:${{matrix.arch}}" \
|
||||
update
|
||||
|
||||
make QUICK_AND_DIRTY_COMPILER=1 V=1 CI=false NIMFLAGS="-d:disableMarchNative --os:${OS} --cpu:${{matrix.arch}}" \
|
||||
make QUICK_AND_DIRTY_COMPILER=1 V=1 CI=false\
|
||||
NIMFLAGS="-d:disableMarchNative --os:${OS} --cpu:${{matrix.arch}} -d:postgres" \
|
||||
wakunode2\
|
||||
chat2\
|
||||
tools
|
||||
|
2
.github/workflows/release-assets.yml
vendored
2
.github/workflows/release-assets.yml
vendored
@ -53,7 +53,7 @@ jobs:
|
||||
OS=$([[ "${{runner.os}}" == "macOS" ]] && echo "macosx" || echo "linux")
|
||||
|
||||
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC} -d:disableMarchNative --os:${OS} --cpu:${{matrix.arch}}" V=1 update
|
||||
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC} -d:disableMarchNative --os:${OS} --cpu:${{matrix.arch}}" CI=false wakunode2
|
||||
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC} -d:disableMarchNative --os:${OS} --cpu:${{matrix.arch}} -d:postgres" CI=false wakunode2
|
||||
make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC} -d:disableMarchNative --os:${OS} --cpu:${{matrix.arch}}" CI=false chat2
|
||||
tar -cvzf ${{steps.vars.outputs.nwaku}} ./build/
|
||||
|
||||
|
@ -12,6 +12,7 @@ pipeline {
|
||||
'-d:insecure',
|
||||
'-d:disableMarchNative',
|
||||
'--parallelBuild:6',
|
||||
'-d:postgres',
|
||||
].join(' ')
|
||||
)
|
||||
string(
|
||||
|
@ -34,6 +34,7 @@ pipeline {
|
||||
'-d:disableMarchNative',
|
||||
'-d:chronicles_colors:none',
|
||||
'-d:insecure',
|
||||
'-d:postgres',
|
||||
].join(' ')
|
||||
)
|
||||
string(
|
||||
|
Loading…
x
Reference in New Issue
Block a user