Skip to content

Commit

Permalink
docker: fix version cmd (#6947)
Browse files Browse the repository at this point in the history
* ttempt to debug docker image

* describe

* force depth

* fix simd version

* test fetch tags

* undo test

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
tac0turtle and mergify[bot] authored Aug 5, 2020
1 parent 1a531cb commit dfa0642
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
Expand Down
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ WORKDIR /go/src/github.com/cosmos/cosmos-sdk
COPY . .

# build Cosmos SDK, remove packages
RUN make tools && \
make build-simd && \
cp ./build/sim* /go/bin
RUN make build-simd && \
cp ./build/simd /go/bin
# make build-sim-linux ??


Expand Down

0 comments on commit dfa0642

Please sign in to comment.