Update readme.md #148
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test official Chia Docker Image | |
on: | |
pull_request: | |
jobs: | |
docker_build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/github-script@v6 | |
id: 'tag' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
result-encoding: string | |
script: | | |
const release = await github.rest.repos.getLatestRelease({ | |
owner: 'Chia-Network', | |
repo: 'chia-blockchain', | |
}); | |
return release.data.tag_name; | |
- run: docker build --build-arg BRANCH="${{ steps.tag.outputs.result }}" -t localtest:latest . | |
- run: docker run -d --name=chia localtest:latest | |
- timeout-minutes: 10 | |
run: | | |
while true; do | |
HEALTH_STATUS=$(docker inspect --format="{{.State.Health.Status}}" chia) | |
if [ "$HEALTH_STATUS" == "starting" ]; then | |
echo "Container chia is still starting. Waiting..." | |
sleep 1 | |
elif [ "$HEALTH_STATUS" == "healthy" ]; then | |
echo "Health check succeeded for container chia" | |
break | |
else | |
echo "Health check failed for container chia" | |
exit 1 | |
fi | |
done |