Skip to content

Commit 8413e38

Browse files
fix release CI for proxy (#3685)
* fix * trigger CI
1 parent de07517 commit 8413e38

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

docker/dist/entry_point.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ if [[ "${PLATFORM}" == "windows_amd64" ]]; then
9292
USE_VENDORED_LIBUNWIND=1 \
9393
LOG_LEVEL="TRACE" \
9494
USE_SYSTEM_ROCKSDB=0 \
95-
NIMFLAGS="${NIMFLAGS_COMMON} -d:PREFER_HASHTREE_SHA256:false --os:windows --gcc.exe=${CC} --gcc.linkerexe=${CXX} --passL:'-static -lshlwapi -lrpcrt4' -d:BLSTuseSSSE3=1" \
95+
NIMFLAGS="${NIMFLAGS_COMMON} -d:PREFER_HASHTREE_SHA256:false --os:windows --gcc.exe=${CC} --gcc.linkerexe=${CXX} --passL:-static --passL:-lshlwapi --passL:-lrpcrt4 -d:BLSTuseSSSE3=1" \
9696
${BINARIES}
9797

9898
elif [[ "${PLATFORM}" == "linux_arm64" ]]; then
@@ -167,7 +167,7 @@ elif [[ "${PLATFORM}" == "macos_arm64" ]]; then
167167
FORCE_DSYMUTIL=1 \
168168
USE_VENDORED_LIBUNWIND=1 \
169169
USE_SYSTEM_ROCKSDB=0 \
170-
NIMFLAGS="${NIMFLAGS_COMMON} --os:macosx --cpu:arm64 --passC:'-mcpu=apple-a14' --passL:'-mcpu=apple-a14 -static-libstdc++' --clang.exe=${CC} --clang.linkerexe=${CXX}" \
170+
NIMFLAGS="${NIMFLAGS_COMMON} --os:macosx --cpu:arm64 --passC:'-mcpu=apple-a14' --passL:-mcpu=apple-a14 --passL:-static-libstdc++ --clang.exe=${CC} --clang.linkerexe=${CXX}" \
171171
${BINARIES}
172172

173173
else # linux_amd64

execution_chain/tracer.nim

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ import
2626
./transaction,
2727
./utils/utils
2828

29-
type
30-
CaptCtxRef = ref object
31-
db: CoreDbRef # not `nil`
32-
root: common.Hash32
29+
type CaptCtxRef = ref object
30+
db: CoreDbRef # not `nil`
31+
root: common.Hash32
3332

3433
const
3534
senderName = "sender"

0 commit comments

Comments
 (0)