-
Notifications
You must be signed in to change notification settings - Fork 3
/
Earthfile
61 lines (53 loc) · 1.97 KB
/
Earthfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
VERSION 0.6
FROM golang:1.21
WORKDIR /go/eventkit
lint:
RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/go/pkg/mod \
go install honnef.co/go/tools/cmd/[email protected]
RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/go/pkg/mod \
go install github.com/golangci/golangci-lint/cmd/[email protected]
RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/go/pkg/mod \
go install github.com/storj/ci/check-cross-compile@latest
COPY . .
RUN golangci-lint run
RUN staticcheck ./...
RUN check-cross-compile ./...
test:
COPY . .
RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/go/pkg/mod \
go test ./...
check-format:
COPY . .
RUN bash -c 'mkdir build || true'
RUN bash -c '[[ $(git status --short) == "" ]] || (echo "Before formatting, please commit all your work!!! (Formatter will format only last commit)" && exit -1)'
RUN git show --name-only --pretty=format: | grep ".go" | xargs -n1 gofmt -s -w
RUN git diff > build/format.patch
SAVE ARTIFACT build/format.patch
format:
LOCALLY
COPY +check-format/format.patch build/format.patch
RUN git apply --allow-empty build/format.patch
RUN git status
build:
WORKDIR /usr/src/eventkit
COPY . .
ENV CGO_ENABLED=false
WORKDIR /usr/src/eventkit/eventkitd-bigquery
RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/go/pkg/mod \
go install
SAVE ARTIFACT /go/bin/eventkitd-bigquery
build-image:
COPY .git .git
ARG TAG=$(git rev-parse --short HEAD)
ARG IMAGE=img.dev.storj.io/dev/eventkitd
BUILD +build-tagged-image --TAG=$TAG --IMAGE=$IMAGE
build-tagged-image:
ARG --required TAG
ARG --required IMAGE
COPY +build/eventkitd-bigquery /opt/eventkit/bin/eventkitd-bigquery
SAVE IMAGE --push $IMAGE:$TAG $IMAGE:latest