Skip to content

Commit

Permalink
[Node] Add ldlflag to build (Layr-Labs#519)
Browse files Browse the repository at this point in the history
Co-authored-by: Siddharth More <Siddhi More>
  • Loading branch information
siddimore authored Apr 25, 2024
1 parent cbff1ae commit da48cbe
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/docker-publish-opr-node-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ on:
commit_sha:
description: 'Specific Commit SHA (Required)'
required: true
version:
description: 'Version (Required)'
required: true
gitcommit:
description: 'GitCommit (Required)'
required: true
release_tag:
description: 'Release Tag (Optional)'
required: false
Expand All @@ -27,6 +33,12 @@ jobs:
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.commit_sha }}
- name: Get Commit Date
id: get_date
run: |
GIT_DATE=$(git log -1 --format=%cd --date=format:'%Y-%m-%d' ${{ github.event.inputs.gitcommit }} || date '+%Y-%m-%d')
echo "GIT_DATE=$GIT_DATE" >> $GITHUB_ENV
echo "::set-output name=gitDate::$GIT_DATE"
- name: Setup Buildx
uses: docker/setup-buildx-action@v1
Expand Down Expand Up @@ -64,6 +76,7 @@ jobs:
tags: ${{ env.REGISTRY }}/layr-labs/eigenda/opr-node:${{ steps.set_tag.outputs.tag }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
build-args: SEMVER=${{ github.event.inputs.version }},GITCOMMIT=${{ github.event.inputs.gitcommit }},GITDATE=${{ steps.get_date.outputs.gitDate }}
if: ${{ success() }}

- name: Build and Push NodePlugin Image
Expand Down
6 changes: 5 additions & 1 deletion node/cmd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM golang:1.21.1-alpine3.18 as builder

ARG SEMVER
ARG GITCOMMIT
ARG GITDATE

RUN apk add --no-cache make musl-dev linux-headers gcc git jq bash

# build node with local monorepo go modules
Expand All @@ -16,7 +20,7 @@ COPY go.sum /app

WORKDIR /app/node

RUN go build -o ./bin/node ./cmd
RUN go build -ldflags="-X 'node.SemVer=${SEMVER}' -X 'node.GitCommit=${GITCOMMIT}' -X 'node.GitDate=${GITDATE}'" -o ./bin/node ./cmd

FROM alpine:3.18

Expand Down
6 changes: 3 additions & 3 deletions node/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ const (
// Min number of seconds for the ExpirationPollIntervalSecFlag.
minExpirationPollIntervalSec = 3
AppName = "da-node"
SemVer = "0.6.1"
GitCommit = ""
GitDate = ""
)

var (
Expand All @@ -35,6 +32,9 @@ var (
0: "eth_quorum",
1: "permissioned_quorum",
}
SemVer = "v0.0.0"
GitCommit = ""
GitDate = ""
)

// Config contains all of the configuration information for a DA node.
Expand Down

0 comments on commit da48cbe

Please sign in to comment.