try force build #130
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
on: | |
push: | |
branches: | |
- main | |
- dev | |
- dockercomposeaction | |
tags: | |
- "*" | |
workflow_dispatch: | |
inputs: | |
force_build: | |
type: boolean | |
description: 'Build image even if tests fail' | |
default: true | |
jobs: | |
docker-release: | |
name: Docker Build Test Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: "read" | |
id-token: "write" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Generate Docker metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: us-east1-docker.pkg.dev/${{ secrets.GCP_PROJECT_ID }}/${{ secrets.GCP_ARTIFACT_REPO }}/wvm | |
tags: | | |
# Include latest for main branch and tagged releases | |
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' || (github.ref_type == 'tag' && github.event.base_ref == 'refs/heads/main') }} | |
# Tag dev as nightly | |
type=raw,value=nightly,enable=${{ github.ref == 'refs/heads/dev' }} | |
# Always include tag if it's a tag event | |
type=ref,event=tag | |
# Include branch name for other branches | |
type=ref,event=branch,enable=${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' }} | |
- name: Authenticate with Google Cloud | |
id: auth | |
uses: google-github-actions/auth@v2 | |
with: | |
token_format: access_token | |
credentials_json: ${{ secrets.GCP_CREDENTIALS_JSON }} | |
access_token_lifetime: 1800s | |
- name: Configure Docker for GAR | |
run: | | |
gcloud auth configure-docker us-east1-docker.pkg.dev | |
echo "DOCKER_BUILDKIT=1" >> $GITHUB_ENV | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
buildkitd-flags: --debug | |
- name: Login to Artifact Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: us-east1-docker.pkg.dev | |
username: oauth2accesstoken | |
password: ${{ steps.auth.outputs.access_token }} | |
- name: Build for testing | |
id: build-test | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: false | |
load: true | |
tags: wvm:local | |
cache-from: | | |
type=registry,ref=us-east1-docker.pkg.dev/${{ secrets.GCP_PROJECT_ID }}/${{ secrets.GCP_ARTIFACT_REPO }}/wvm:buildcache | |
build-args: | | |
BUILDKIT_INLINE_CACHE=1 | |
# Verify the test build | |
- name: Verify local image | |
run: | | |
if ! docker image inspect wvm:local >/dev/null 2>&1; then | |
echo "Local image wvm:local not found!" | |
exit 1 | |
fi | |
echo "Local image verified successfully" | |
# Set up test environment | |
- name: Setup test environment | |
run: | | |
mkdir -p .testnet | |
chmod 750 .testnet | |
cd .testnet | |
git clone --depth 1 https://github.com/weaveVM/wvm-docker-testnet.git . | |
echo '${{ secrets.GCP_CREDENTIALS_JSON }}' > ./execution/key.json | |
chmod 600 ./execution/key.json | |
# Run tests with proper error collection | |
- name: Run tests | |
id: test | |
continue-on-error: true | |
run: | | |
cd .testnet | |
mkdir -p logs | |
echo "Starting Docker Compose..." | |
if ! docker compose up -d; then | |
echo "Docker Compose failed. Collecting logs..." | |
docker ps -a | |
docker compose logs > logs/compose.log | |
for container in $(docker compose ps -q); do | |
name=$(docker inspect --format='{{.Name}}' $container) | |
echo "=== Logs for $name ===" | |
docker logs $container &> "logs/$name.log" | |
cat "logs/$name.log" | |
done | |
exit 1 | |
fi | |
echo "Installing dependencies..." | |
if ! npm install; then | |
echo "npm install failed" | |
docker compose logs > logs/compose_fail.log | |
cat logs/compose_fail.log | |
exit 1 | |
fi | |
echo "Running tests..." | |
if ! SIGNER_KEY=${{ secrets.TEST_SIGNER_KEY }} node test.js; then | |
echo "Tests failed" | |
docker compose logs > logs/compose_fail.log | |
cat logs/compose_fail.log | |
exit 1 | |
fi | |
echo "Tests completed successfully" | |
- name: Report test status | |
if: always() | |
run: | | |
if [ "${{ steps.test.outcome }}" == "failure" ]; then | |
echo "::warning ::Tests failed but continuing due to force_build option" | |
echo "### ⚠️ Test Results" >> $GITHUB_STEP_SUMMARY | |
echo "Tests failed but build will continue as force_build is enabled." >> $GITHUB_STEP_SUMMARY | |
echo "Please check test logs for details." >> $GITHUB_STEP_SUMMARY | |
fi | |
- name: Cleanup test environment | |
if: always() | |
run: | | |
cd .testnet || true | |
docker compose down || true | |
cd .. | |
# Use sudo to remove directories that might have root ownership | |
sudo rm -rf .testnet | |
- name: Push to registry | |
if: success() || github.event.inputs.force_build == 'true' | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: | | |
type=registry,ref=us-east1-docker.pkg.dev/${{ secrets.GCP_PROJECT_ID }}/${{ secrets.GCP_ARTIFACT_REPO }}/wvm:buildcache | |
cache-to: | | |
type=registry,ref=us-east1-docker.pkg.dev/${{ secrets.GCP_PROJECT_ID }}/${{ secrets.GCP_ARTIFACT_REPO }}/wvm:buildcache,mode=max |