ci: push nightly builds (#6517)
This commit is contained in:
parent
2da954ff61
commit
cf078c0c88
|
@ -0,0 +1,22 @@
|
|||
name: Nightly Builds
|
||||
# Nightly Builds rebuilds the simapp docker image Monday - Friday at midnight
|
||||
# and pushes the image to https://hub.docker.com/r/interchainio/simapp/tags
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * 1-5" # deploy at midnight Monday - Friday
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Get current date
|
||||
id: date
|
||||
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
|
||||
- name: Publish to Docker Hub
|
||||
uses: docker/build-push-action@v1.1.0
|
||||
with:
|
||||
repository: interchainio/simapp
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
tags: nightly-${{ steps.date.outputs.date }}
|
2
Makefile
2
Makefile
|
@ -378,7 +378,7 @@ proto-update-deps:
|
|||
###############################################################################
|
||||
|
||||
build-docker-local-simapp:
|
||||
@$(MAKE) -C networks/local
|
||||
docker build -t cosmos-sdk/simapp .
|
||||
|
||||
# Run a 4-node testnet locally
|
||||
localnet-start: build-simd-linux localnet-stop
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
all:
|
||||
docker build --tag cosmos-sdk/simappnode simappnode
|
||||
|
||||
.PHONY: all
|
|
@ -1,23 +0,0 @@
|
|||
#FROM alpine:3.10.2
|
||||
#
|
||||
#RUN apk update && \
|
||||
# apk upgrade && \
|
||||
# apk --no-cache add curl jq file
|
||||
|
||||
# Changed from Alpine to Ubuntu because the keyring PR is linking to libc
|
||||
# Alpine uses muslc instead of libc
|
||||
|
||||
FROM ubuntu:18.04
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get -y upgrade && \
|
||||
apt-get -y install curl jq file
|
||||
|
||||
VOLUME [ /simd ]
|
||||
WORKDIR /simd
|
||||
EXPOSE 26656 26657 1317
|
||||
ENTRYPOINT ["/usr/bin/wrapper.sh"]
|
||||
CMD ["start"]
|
||||
STOPSIGNAL SIGTERM
|
||||
|
||||
COPY wrapper.sh /usr/bin/wrapper.sh
|
|
@ -1,25 +0,0 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
BINARY=/simd/${BINARY:-simd}
|
||||
ID=${ID:-0}
|
||||
LOG=${LOG:-simd.log}
|
||||
|
||||
if ! [ -f "${BINARY}" ]; then
|
||||
echo "The binary $(basename "${BINARY}") cannot be found. Please add the binary to the shared folder. Please use the BINARY environment variable if the name of the binary is not 'simd'"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
BINARY_CHECK="$(file "$BINARY" | grep 'ELF 64-bit LSB executable, x86-64')"
|
||||
|
||||
if [ -z "${BINARY_CHECK}" ]; then
|
||||
echo "Binary needs to be OS linux, ARCH amd64"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
export SIMDHOME="/simd/node${ID}/simd"
|
||||
|
||||
if [ -d "$(dirname "${SIMDHOME}"/"${LOG}")" ]; then
|
||||
"${BINARY}" --home "${SIMDHOME}" "$@" | tee "${SIMDHOME}/${LOG}"
|
||||
else
|
||||
"${BINARY}" --home "${SIMDHOME}" "$@"
|
||||
fi
|
Loading…
Reference in New Issue