Skip to content

Commit

Permalink
ci(workflow): use dedicated build-go goal for binary compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
ccamel committed Dec 22, 2024
1 parent c622ed3 commit 2d77b6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Build go project
run: |
make build
make build-go
build-docker:
runs-on: ubuntu-22.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Install AXONE blockchain
run: |
make build && make install
make build-go && make install
- name: Initialize blockchain
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN set -eux \

COPY . /src/

RUN BUILD_TAGS=muslc LINK_STATICALLY=true make build
RUN BUILD_TAGS=muslc LINK_STATICALLY=true make build-go

#--- Image stage
FROM alpine:3.20.3
Expand Down

0 comments on commit 2d77b6e

Please sign in to comment.