Skip to content

Commit 2d77b6e

Browse files
committed
ci(workflow): use dedicated build-go goal for binary compilation
1 parent c622ed3 commit 2d77b6e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Build go project
2929
run: |
30-
make build
30+
make build-go
3131
3232
build-docker:
3333
runs-on: ubuntu-22.04

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484

8585
- name: Install AXONE blockchain
8686
run: |
87-
make build && make install
87+
make build-go && make install
8888
8989
- name: Initialize blockchain
9090
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN set -eux \
1515

1616
COPY . /src/
1717

18-
RUN BUILD_TAGS=muslc LINK_STATICALLY=true make build
18+
RUN BUILD_TAGS=muslc LINK_STATICALLY=true make build-go
1919

2020
#--- Image stage
2121
FROM alpine:3.20.3

0 commit comments

Comments
 (0)