mirror of
https://github.com/0glabs/0g-chain.git
synced 2025-04-04 07:45:50 +00:00
update actions
This commit is contained in:
parent
fd4fc4ebb2
commit
72aa6e764b
4
.github/workflows/upload-release-assets.yml
vendored
4
.github/workflows/upload-release-assets.yml
vendored
@ -7,8 +7,6 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
|
||||||
LINK_STATICALLY: true
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
@ -16,7 +14,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
go-version: '1.21'
|
go-version: '1.21'
|
||||||
- name: Build
|
- name: Build
|
||||||
run: sudo make build-release
|
run: sudo LINK_STATICALLY=true make build-release
|
||||||
- name: Rename file
|
- name: Rename file
|
||||||
run: mv ./out/linux/0gchaind ./out/linux/0gchaind-linux-${{ github.ref_name }}
|
run: mv ./out/linux/0gchaind ./out/linux/0gchaind-linux-${{ github.ref_name }}
|
||||||
- name: Upload Release Asset
|
- name: Upload Release Asset
|
||||||
|
3
Makefile
3
Makefile
@ -176,6 +176,9 @@ endif
|
|||||||
ifeq (,$(findstring nostrip,$(COSMOS_BUILD_OPTIONS)))
|
ifeq (,$(findstring nostrip,$(COSMOS_BUILD_OPTIONS)))
|
||||||
ldflags += -w -s
|
ldflags += -w -s
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
$(info The value of LINK_STATICALLY is: $(LINK_STATICALLY))
|
||||||
|
|
||||||
ifeq ($(LINK_STATICALLY),true)
|
ifeq ($(LINK_STATICALLY),true)
|
||||||
ldflags += -linkmode=external -extldflags "-Wl,-z,muldefs -static -lm"
|
ldflags += -linkmode=external -extldflags "-Wl,-z,muldefs -static -lm"
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user