ci: push nightly builds (#6517)

This commit is contained in:
Marko 2020-07-29 21:55:58 +02:00 committed by GitHub
parent 2da954ff61
commit cf078c0c88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 53 deletions

22
.github/workflows/docker.yml vendored Normal file
View File

@ -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 }}

View File

@ -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

View File

@ -1,4 +0,0 @@
all:
docker build --tag cosmos-sdk/simappnode simappnode
.PHONY: all

View File

@ -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

View File

@ -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