Update .gitignore, remove obsolete Woodpecker build file, and add e2e-runner service to docker-compose
ci/woodpecker/push/01-test Pipeline failed
ci/woodpecker/push/02-build-push unknown status

- Added 'e2e/results/' to .gitignore to exclude end-to-end test results.
- Deleted the outdated Woodpecker build-arm.yml file as it is no longer needed.
- Introduced a new e2e-runner service in docker-compose.test.yml to facilitate end-to-end testing with dependencies on other services.
This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-04-25 06:52:58 +03:00
parent b592bf1373
commit 4f5fe70f3f
5 changed files with 86 additions and 4 deletions
+31
View File
@@ -0,0 +1,31 @@
when:
event: [push, pull_request, manual]
branch: [dev, stage, main]
labels:
platform: arm64
steps:
- name: e2e
image: docker:24
environment:
COMPOSE_PROJECT_NAME: loader-e2e
commands:
- cd e2e
- mkdir -p results
- docker compose -f docker-compose.test.yml up --build --abort-on-container-exit --exit-code-from e2e-runner
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- name: e2e-report
image: docker:24
when:
status: [success, failure]
environment:
COMPOSE_PROJECT_NAME: loader-e2e
commands:
- cd e2e
- docker compose -f docker-compose.test.yml down -v || true
- test -f results/report.csv && cat results/report.csv || echo "no report"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
@@ -2,8 +2,20 @@ when:
event: [push, manual]
branch: [dev, stage, main]
depends_on:
- 01-test
# Multi-arch matrix. One workflow file, one entry per architecture. Adding
# amd64 = appending an entry below; no second pipeline file required.
matrix:
include:
- PLATFORM: arm64
TAG_SUFFIX: arm
# - PLATFORM: amd64
# TAG_SUFFIX: amd
labels:
platform: arm64
platform: ${PLATFORM}
steps:
- name: build-push
@@ -17,7 +29,7 @@ steps:
from_secret: registry_token
commands:
- echo "$REGISTRY_TOKEN" | docker login "$REGISTRY_HOST" -u "$REGISTRY_USER" --password-stdin
- export TAG=${CI_COMMIT_BRANCH}-arm
- export TAG=${CI_COMMIT_BRANCH}-${TAG_SUFFIX}
- export BUILD_DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ)
- |
docker build -f Dockerfile \
@@ -30,10 +42,11 @@ steps:
- docker save $REGISTRY_HOST/azaion/loader:$TAG -o loader-image.tar
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- name: publish-artifact
image: python:3.11-slim
commands:
- pip install --no-cache-dir boto3==1.40.9 cryptography==44.0.2 requests==2.32.4
- export PUBLISH_DEV_STAGE=$CI_COMMIT_BRANCH
- export TAG=${CI_COMMIT_BRANCH}-arm
- python scripts/publish_artifact.py --file loader-image.tar --resource-name loader --dev-stage "$PUBLISH_DEV_STAGE" --architecture arm64 --version "$CI_COMMIT_SHA"
- export TAG=${CI_COMMIT_BRANCH}-${TAG_SUFFIX}
- python scripts/publish_artifact.py --file loader-image.tar --resource-name loader --dev-stage "$PUBLISH_DEV_STAGE" --architecture ${PLATFORM} --version "$CI_COMMIT_SHA"