diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 380d260d..6050257c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,7 +112,7 @@ jobs: # Build and test - name: Build - run: make + run: make && ./bin/akvorado version - name: Tests run: make test || make test diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 25c3445f..377df625 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,7 +40,7 @@ run tests: - export GOMODCACHE=$PWD/.go-cache - npm config --user set cache $PWD/.npm-cache - time go mod download - - time make + - time make && ./bin/akvorado version - time make test - time make test-race || make test-race - time make test-coverage || make test-coverage diff --git a/Dockerfile b/Dockerfile index baede56c..26133f01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY go.mod ./ COPY go.sum ./ RUN go mod download COPY . . -RUN make clean && make +RUN make clean && make && ./bin/akvorado version && git status # Do not use scratch, we use alpine to get an healthcheck FROM alpine