Skip to content

Commit

Permalink
Add sommelier and evmos
Browse files Browse the repository at this point in the history
  • Loading branch information
agouin committed Mar 4, 2022
1 parent 4ec4310 commit 822bf7e
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 26 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ADD https://github.com/CosmWasm/wasmvm/releases/download/v1.0.0-beta6/libwasmvm_

RUN git checkout ${VERSION}

RUN export ${BUILD_ENV} && export "${BUILD_TAGS}" && make ${MAKE_TARGET}
RUN if [ ! -z "$BUILD_ENV" ]; then export ${BUILD_ENV}; fi; if [ ! -z "$BUILD_TAGS" ]; then export "${BUILD_TAGS}"; fi; make ${MAKE_TARGET}

RUN cp ${BINARY} /root/cosmos

Expand Down
62 changes: 38 additions & 24 deletions chains.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Akash
- name: akash
github-organization: ovrclk
github-repo: akash
make-target: install
binary-path: /go/bin/akash

# Cosmos Hub
- name: gaia
github-organization: cosmos
Expand All @@ -8,6 +15,30 @@
rocksdb-version:
v6.0.0: v6.10.2

# Evmos
- name: evmos
github-organization: tharsis
github-repo: evmos
make-target: install
binary-path: /go/bin/evmosd

# Juno
- name: juno
github-organization: CosmosContracts
github-repo: juno
make-target: install
binary-path: /go/bin/junod
build-env:
- LEDGER_ENABLED=false
- BUILD_TAGS=muslc

#Omniflix
- name: omniflix
github-organization: OmniFlix
github-repo: omniflixhub
make-target: install
binary-path: /go/bin/omniflixhubd

# Osmosis
- name: osmosis
github-organization: osmosis-labs
Expand All @@ -24,40 +55,23 @@
build-env:
- BUILD_TAGS=muslc

# Akash
- name: akash
github-organization: ovrclk
github-repo: akash
make-target: install
binary-path: /go/bin/akash

# Juno
- name: juno
github-organization: CosmosContracts
github-repo: juno
make-target: install
binary-path: /go/bin/junod
build-env:
- LEDGER_ENABLED=false
- BUILD_TAGS=muslc

# Sentinel
- name: sentinel
github-organization: sentinel-official
github-repo: hub
make-target: install
binary-path: /go/bin/sentinelhub

#Omniflix
- name: omniflix
github-organization: OmniFlix
github-repo: omniflixhub
make-target: install
binary-path: /go/bin/omniflixhubd

# Sim (for testing)
- name: sim
github-organization: cosmos
github-repo: cosmos-sdk
make-target: build-linux
binary-path: build/simd

# Sommelier
- name: sommelier
github-organization: peggyjv
github-repo: sommelier
make-target: install
binary-path: /go/bin/sommelier
2 changes: 1 addition & 1 deletion rocksdb.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ADD https://github.com/CosmWasm/wasmvm/releases/download/v1.0.0-beta6/libwasmvm_

RUN git checkout ${VERSION}

RUN export ${BUILD_ENV} && export "${BUILD_TAGS}" && make ${MAKE_TARGET}
RUN if [ ! -z "$BUILD_ENV" ]; then export ${BUILD_ENV}; fi; if [ ! -z "$BUILD_TAGS" ]; then export "${BUILD_TAGS}"; fi; make ${MAKE_TARGET}

RUN cp ${BINARY} /root/cosmos

Expand Down

0 comments on commit 822bf7e

Please sign in to comment.