Skip to content

Commit

Permalink
Merge pull request #8 from jbowen93/build-test
Browse files Browse the repository at this point in the history
move debug build to its own action, create docker build and test action
  • Loading branch information
jbowen93 authored Mar 23, 2022
2 parents 4f74a52 + 9624a40 commit ae49d47
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 35 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: docker-build
name: docker-build-debug

on:
push:
Expand All @@ -16,7 +16,7 @@ env:
IMAGE_NAME: ${{ github.repository }}

jobs:
debug:
build:
runs-on: "ubuntu-latest"
permissions:
contents: write
Expand Down Expand Up @@ -49,36 +49,3 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
file: docker/debug.Dockerfile
regular:
runs-on: "ubuntu-latest"
permissions:
contents: write
packages: write
steps:
- name: "Checkout source code"
uses: "actions/checkout@v2"
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GHCR
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64, linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
file: docker/Dockerfile
97 changes: 97 additions & 0 deletions .github/workflows/docker-build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
name: docker-build-test

on:
push:
branches:
- '**'
tags:
- 'v*.*.*'
pull_request:
branches:
- 'main'
workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build:
runs-on: "ubuntu-latest"
permissions:
contents: write
packages: write
steps:
- name: "Checkout source code"
uses: "actions/checkout@v2"
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GHCR
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64, linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
file: docker/Dockerfile

test:
needs: build
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v2
- name: Clone ephemeral-cluster repo
uses: actions/checkout@v2
with:
repository: celestiaorg/ephemeral-cluster
path: ephemeral-cluster
ref: chain
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: "Setup Cluster"
run: |
export EVMOS_IMAGE_TAG=sha-$(git rev-parse --short "$GITHUB_SHA")
cd ephemeral-cluster
./debug-start-cluster.sh
- name: Clone ethermint repo
uses: actions/checkout@v2
with:
repository: celestiaorg/ethermint
path: ethermint
ref: v0.11.0+0.1.0
- name: move
run: |
mv ethermint ..
- name: "Test Cluster"
run: |
docker ps -a
echo "------------- docker logs core0 -------------"
docker logs core0
echo "------------- docker logs bridge0 -------------"
docker logs bridge0
echo "------------- docker logs light0 -------------"
docker logs light0
echo "------------- docker logs dalc0 -------------"
docker logs dalc0
echo "------------- docker logs evmos0 -------------"
docker logs evmos0
cd /home/runner/work/evmos/ethermint
MODE=rpc HOST=http://127.0.0.1:8545 go test ./tests/rpc/...

0 comments on commit ae49d47

Please sign in to comment.