Skip to content

Commit

Permalink
Add CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
gartnera committed Aug 19, 2024
1 parent 5504135 commit aa4eebd
Showing 1 changed file with 26 additions and 9 deletions.
35 changes: 26 additions & 9 deletions .github/workflows/build.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build
name: ci

on:
push:
Expand All @@ -9,10 +9,12 @@ on:
pull_request:

jobs:
docker:
build:
runs-on: ubuntu-latest
env:
IMAGE: ghcr.io/${{ github.repository_owner }}/zetacored
IMAGE_BASE: ghcr.io/${{ github.repository_owner }}/zetacored
outputs:
IMAGE: ${{ fromJson(steps.build.outputs.metadata)['image.name'] }}
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -26,25 +28,40 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Generate version
run: |
# Default tag as commit SHA
VERSION=${GITHUB_SHA::7}
# Use tag name if it's a tag push
if [ "$GITHUB_EVENT_NAME" == "push" ] && [ "$GITHUB_REF_TYPE" == "tag" ]; then
VERSION=${GITHUB_REF_NAME}
fi
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Build and push
id: build
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
provenance: mode=max
tags: "${{ env.IMAGE }}:${{ env.VERSION }}"
cache-from: type=registry,ref=${{ env.IMAGE }}:buildcache
cache-to: type=registry,ref=${{ env.IMAGE }}:buildcache,mode=max
tags: "${{ env.IMAGE_BASE }}:${{ env.VERSION }}"
cache-from: type=registry,ref=${{ env.IMAGE_BASE }}:buildcache
cache-to: type=registry,ref=${{ env.IMAGE_BASE }}:buildcache,mode=max
test:
runs-on: buildjet-4vcpu-ubuntu-2204
needs: build
timeout-minutes: 45
steps:
- name: Start container
run: docker run --rm -d --name zetacored -p 8545:8545 -e $(uuidgen) ${{ needs.build.outputs.IMAGE }}
- name: Wait for healthy
run: |
while ! curl -f -X POST --data '{\"jsonrpc\":\"2.0\",\"method\":\"web3_clientVersion\",\"params\":[],\"id\":67}' -H 'Content-Type: application/json' http://localhost:8545"; do
echo "waiting for zetacored health"
sleep 5
fi
- name: Dump logs
run: docker logs zetacored

0 comments on commit aa4eebd

Please sign in to comment.