mirror of
https://github.com/mempool/mempool.git
synced 2026-08-13 12:33:11 +02:00
346 lines
12 KiB
YAML
346 lines
12 KiB
YAML
name: Docker build on tag
|
|
env:
|
|
DOCKER_CLI_EXPERIMENTAL: enabled
|
|
TAG_FMT: "^refs/tags/(((.?[0-9]+){3,4}))$"
|
|
DOCKER_BUILDKIT: 1 # Enable BuildKit for better performance
|
|
COMPOSE_DOCKER_CLI_BUILD: 0
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v[0-9]+.[0-9]+.[0-9]+
|
|
- v[0-9]+.[0-9]+.[0-9]+-*
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, labeled]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
# Run on tag pushes OR on PRs that have the "docker" or "docker-test" label
|
|
if: |
|
|
github.event_name == 'push' ||
|
|
(github.event_name == 'pull_request' && (contains(github.event.pull_request.labels.*.name, 'docker') || contains(github.event.pull_request.labels.*.name, 'docker-test')))
|
|
strategy:
|
|
matrix:
|
|
service:
|
|
- frontend
|
|
- backend
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 120
|
|
name: Build and push to DockerHub
|
|
outputs:
|
|
image-digest-frontend: ${{ matrix.service == 'frontend' && steps.docker-build.outputs.digest || '' }}
|
|
image-digest-backend: ${{ matrix.service == 'backend' && steps.docker-build.outputs.digest || '' }}
|
|
tag: ${{ matrix.service == 'frontend' && (steps.set-tag-push.outputs.tag || steps.set-tag-pr.outputs.tag) || '' }}
|
|
steps:
|
|
- name: Replace the current swap file
|
|
shell: bash
|
|
run: |
|
|
sudo swapoff /mnt/swapfile || true
|
|
sudo rm -f /mnt/swapfile
|
|
sudo fallocate -l 16G /mnt/swapfile
|
|
sudo chmod 600 /mnt/swapfile
|
|
sudo mkswap /mnt/swapfile
|
|
sudo swapon /mnt/swapfile
|
|
|
|
- name: Show current memory and swap status
|
|
shell: bash
|
|
run: |
|
|
sudo free -h
|
|
echo
|
|
sudo swapon --show
|
|
|
|
- name: Mount a tmpfs over /var/lib/docker
|
|
shell: bash
|
|
run: |
|
|
if [ ! -d "/var/lib/docker" ]; then
|
|
echo "Directory '/var/lib/docker' not found"
|
|
exit 1
|
|
fi
|
|
sudo mount -t tmpfs -o size=12G tmpfs /var/lib/docker
|
|
sudo systemctl restart docker
|
|
sudo df -h | grep docker
|
|
|
|
# Only for tag pushes: use the Git tag as TAG
|
|
- name: Set TAG from pushed tag
|
|
if: github.event_name == 'push'
|
|
id: set-tag-push
|
|
run: |
|
|
TAG="${GITHUB_REF/refs\/tags\//}"
|
|
echo "TAG=${TAG}" >> $GITHUB_ENV
|
|
echo "tag=${TAG}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Add SHORT_SHA env property with commit short sha
|
|
run: |
|
|
if [ "${{ github.event_name }}" = "pull_request" ]; then
|
|
SHA="${{ github.event.pull_request.head.sha }}"
|
|
else
|
|
SHA="${GITHUB_SHA}"
|
|
fi
|
|
echo "SHORT_SHA=${SHA:0:8}" >> $GITHUB_ENV
|
|
|
|
|
|
- name: Login to Docker for building
|
|
if: |
|
|
github.event_name == 'push' ||
|
|
(github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'docker-test'))
|
|
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
|
|
|
|
- name: Checkout project
|
|
uses: actions/checkout@v4
|
|
|
|
# For PRs: use package.json version + short sha as TAG
|
|
- name: Set TAG from service package.json for pull requests
|
|
if: github.event_name == 'pull_request'
|
|
id: set-tag-pr
|
|
run: |
|
|
if [ "${{ matrix.service }}" = "frontend" ]; then
|
|
VERSION=$(jq -r '.version' frontend/package.json)
|
|
else
|
|
VERSION=$(jq -r '.version' backend/package.json)
|
|
fi
|
|
TAG="v${VERSION}-${SHORT_SHA}"
|
|
echo "TAG=${TAG}" >> $GITHUB_ENV
|
|
echo "tag=${TAG}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Show set environment variables
|
|
run: |
|
|
printf " TAG: %s\n" "$TAG"
|
|
printf " SHORT_SHA: %s\n" "$SHORT_SHA"
|
|
|
|
- name: Init repo for Dockerization
|
|
run: docker/init.sh "$TAG"
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
with:
|
|
platforms: linux/amd64,linux/arm64
|
|
id: qemu
|
|
|
|
- name: Setup Docker buildx action
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
platforms: linux/amd64,linux/arm64
|
|
driver-opts: |
|
|
network=host
|
|
id: buildx
|
|
|
|
- name: Available platforms
|
|
run: echo ${{ steps.buildx.outputs.platforms }}
|
|
|
|
- name: Cache Docker layers
|
|
uses: actions/cache@v3
|
|
id: cache
|
|
with:
|
|
path: /tmp/.buildx-cache
|
|
key: ${{ runner.os }}-buildx-${{ matrix.service }}-${{ github.sha }}
|
|
restore-keys: |
|
|
${{ runner.os }}-buildx-${{ matrix.service }}-
|
|
|
|
- name: Run Docker buildx for ${{ matrix.service }} against tag
|
|
id: docker-build
|
|
# Skip building/pushing images when this is a docker-test label PR
|
|
if: |
|
|
github.event_name == 'push' ||
|
|
(github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'docker-test'))
|
|
run: |
|
|
docker buildx build \
|
|
--cache-from "type=local,src=/tmp/.buildx-cache" \
|
|
--cache-to "type=local,dest=/tmp/.buildx-cache,mode=max" \
|
|
--platform linux/amd64,linux/arm64 \
|
|
--tag ${{ secrets.DOCKER_HUB_USER }}/${{ matrix.service }}:$TAG \
|
|
--build-context rustgbt=./rust \
|
|
--build-context backend=./backend \
|
|
--output "type=registry,push=true" \
|
|
--build-arg commitHash=$SHORT_SHA \
|
|
./${{ matrix.service }}/
|
|
|
|
tag-latest:
|
|
needs: build
|
|
# Only for successful *tag pushes* and only for "plain" versions (no '-')
|
|
if: ${{ needs.build.result == 'success' && github.event_name == 'push' && !contains(github.ref_name, '-') }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
name: Tag release build as latest
|
|
strategy:
|
|
matrix:
|
|
service:
|
|
- frontend
|
|
- backend
|
|
steps:
|
|
- name: Set env variables
|
|
run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
with:
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
- name: Setup Docker buildx action
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
platforms: linux/amd64,linux/arm64
|
|
driver-opts: |
|
|
network=host
|
|
|
|
- name: Login to Docker Hub
|
|
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
|
|
|
|
- name: Tag as latest for ${{ matrix.service }}
|
|
run: |
|
|
docker buildx imagetools create \
|
|
--tag ${{ secrets.DOCKER_HUB_USER }}/${{ matrix.service }}:latest \
|
|
${{ secrets.DOCKER_HUB_USER }}/${{ matrix.service }}:$TAG
|
|
|
|
test-images:
|
|
needs: build
|
|
# Only run for PRs with "docker-test" label
|
|
if: ${{ needs.build.result == 'success' && github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'docker-test') }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
name: Test built Docker images
|
|
steps:
|
|
- name: Checkout project
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Add SHORT_SHA env property with commit short sha
|
|
run: |
|
|
SHA="${{ github.event.pull_request.head.sha }}"
|
|
echo "SHORT_SHA=${SHA:0:8}" >> $GITHUB_ENV
|
|
|
|
- name: Set TAG from frontend package.json
|
|
run: |
|
|
VERSION=$(jq -r '.version' frontend/package.json)
|
|
echo "TAG=v${VERSION}-${SHORT_SHA}" >> $GITHUB_ENV
|
|
|
|
- name: Show set environment variables
|
|
run: |
|
|
printf " TAG: %s\n" "$TAG"
|
|
printf " SHORT_SHA: %s\n" "$SHORT_SHA"
|
|
|
|
- name: Init repo for Dockerization
|
|
run: docker/init.sh "$TAG"
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Build frontend image locally
|
|
run: |
|
|
docker buildx build \
|
|
--tag test-frontend:$TAG \
|
|
--build-arg commitHash=$SHORT_SHA \
|
|
--load \
|
|
--platform linux/amd64 \
|
|
./frontend/
|
|
|
|
- name: Build backend image locally
|
|
run: |
|
|
docker buildx build \
|
|
--tag test-backend:$TAG \
|
|
--build-context rustgbt=./rust \
|
|
--build-context backend=./backend \
|
|
--build-arg commitHash=$SHORT_SHA \
|
|
--load \
|
|
--platform linux/amd64 \
|
|
./backend/
|
|
|
|
- name: Generate docker-compose test file
|
|
run: |
|
|
cat > docker-compose.test.yml <<EOF
|
|
version: "3.7"
|
|
|
|
services:
|
|
web:
|
|
environment:
|
|
FRONTEND_HTTP_PORT: "8080"
|
|
BACKEND_MAINNET_HTTP_HOST: "api"
|
|
image: test-frontend:$TAG
|
|
user: "1000:1000"
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
command: "./wait-for db:3306 --timeout=720 -- nginx -g 'daemon off;'"
|
|
ports:
|
|
- "8080:8080"
|
|
depends_on:
|
|
- api
|
|
- db
|
|
api:
|
|
environment:
|
|
MEMPOOL_BACKEND: "none"
|
|
CORE_RPC_HOST: "172.27.0.1"
|
|
CORE_RPC_PORT: "8332"
|
|
CORE_RPC_USERNAME: "mempool"
|
|
CORE_RPC_PASSWORD: "mempool"
|
|
DATABASE_ENABLED: "true"
|
|
DATABASE_HOST: "db"
|
|
DATABASE_DATABASE: "mempool"
|
|
DATABASE_USERNAME: "mempool"
|
|
DATABASE_PASSWORD: "mempool"
|
|
STATISTICS_ENABLED: "true"
|
|
image: test-backend:$TAG
|
|
user: "1000:1000"
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
command: "./wait-for-it.sh db:3306 --timeout=720 --strict -- ./start.sh"
|
|
depends_on:
|
|
- db
|
|
db:
|
|
environment:
|
|
MYSQL_DATABASE: "mempool"
|
|
MYSQL_USER: "mempool"
|
|
MYSQL_PASSWORD: "mempool"
|
|
MYSQL_ROOT_PASSWORD: "admin"
|
|
image: mariadb:10.5.21
|
|
user: "1000:1000"
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
tmpfs:
|
|
- /var/lib/mysql
|
|
EOF
|
|
cat docker-compose.test.yml
|
|
|
|
- name: Start containers
|
|
run: |
|
|
docker compose -f docker-compose.test.yml up -d
|
|
|
|
- name: Wait for services to be ready
|
|
run: |
|
|
echo "Waiting for database to be ready..."
|
|
timeout=120
|
|
elapsed=0
|
|
while [ $elapsed -lt $timeout ]; do
|
|
if docker compose -f docker-compose.test.yml exec -T db mysqladmin ping -h localhost -u mempool -pmempool --silent 2>/dev/null; then
|
|
echo "Database is ready!"
|
|
break
|
|
fi
|
|
sleep 2
|
|
elapsed=$((elapsed + 2))
|
|
done
|
|
if [ $elapsed -ge $timeout ]; then
|
|
echo "Database did not become ready in time"
|
|
docker compose -f docker-compose.test.yml logs
|
|
exit 1
|
|
fi
|
|
|
|
- name: Verify containers are running
|
|
run: |
|
|
echo "Checking container status..."
|
|
docker compose -f docker-compose.test.yml ps
|
|
if ! docker compose -f docker-compose.test.yml ps | grep -q "Up"; then
|
|
echo "Some containers are not running"
|
|
docker compose -f docker-compose.test.yml logs
|
|
exit 1
|
|
fi
|
|
echo "All containers are running successfully!"
|
|
|
|
- name: Show container logs
|
|
if: failure()
|
|
run: |
|
|
docker compose -f docker-compose.test.yml logs
|
|
|
|
- name: Clean up containers
|
|
if: always()
|
|
run: |
|
|
docker compose -f docker-compose.test.yml down -v
|