You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-ejabberd/.github/workflows/tests.yml

137 lines
4.2 KiB
YAML

name: Tests
on:
push:
paths:
- '.github/workflows/tests.yml'
- 'ecs/**'
- 'mix/**'
pull_request:
paths:
- '.github/workflows/tests.yml'
- 'ecs/**'
- 'mix/**'
env:
REGISTRY: ghcr.io
MIX_IMAGE_NAME: ${{ github.repository_owner }}/mix
ECS_IMAGE_NAME: ${{ github.repository_owner }}/ecs
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: true
max-parallel: 1
permissions:
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get git describe
id: gitdescribe
run: echo "ver=$(git describe --exact-match 2>/dev/null || echo latest)" >> $GITHUB_OUTPUT
- name: Extract mix metadata (tags, labels) for Docker
id: mixmeta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.MIX_IMAGE_NAME }}
labels: |
org.opencontainers.image.revision=${{ steps.gitdescribe.outputs.ver }}
org.opencontainers.image.licenses=GPL-2.0
org.opencontainers.image.vendor=ProcessOne
- name: Extract ecs metadata (tags, labels) for Docker
id: ecsmeta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.ECS_IMAGE_NAME }}
labels: |
org.opencontainers.image.revision=${{ steps.gitdescribe.outputs.ver }}
org.opencontainers.image.licenses=GPL-2.0
org.opencontainers.image.vendor=ProcessOne
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push mix image
uses: docker/build-push-action@v3
with:
build-args: |
VERSION=${{ steps.gitdescribe.outputs.ver }}
cache-from: type=gha
cache-to: type=gha,mode=max
context: mix
labels: ${{ steps.mixmeta.outputs.labels }}
platforms: linux/amd64
load: ${{ github.ref_type != 'tag' }}
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.mixmeta.outputs.tags }}
- name: Prepare ecs Dockerfile
run: sed -i 's|ejabberd/mix|${{ env.REGISTRY }}/${{ env.MIX_IMAGE_NAME }}|g' ecs/Dockerfile
- name: Build and push ecs image
uses: docker/build-push-action@v3
with:
build-args: |
VERSION=${{ steps.gitdescribe.outputs.ver }}
cache-from: type=gha
cache-to: type=gha,mode=max
context: ecs
labels: ${{ steps.ecsmeta.outputs.labels }}
platforms: linux/amd64
load: ${{ github.ref_type != 'tag' }}
push: ${{ github.ref_type == 'tag' }}
tags: ${{ steps.ecsmeta.outputs.tags }}
- name: Get a single tag
id: ecstag
run: echo "tag=${{ env.REGISTRY }}/${{ env.ECS_IMAGE_NAME }}:${{ github.ref_name }}" >> $GITHUB_OUTPUT
- name: Run ecs image
run: |
docker images
docker run --name ejabberd -d -p 5222:5222 ${{ steps.ecstag.outputs.tag }}
- name: Wait ejabberd started
run: |
docker exec ejabberd bin/ejabberdctl started
- name: Check ecs results
run: |
docker ps -s
docker logs ejabberd
docker logs ejabberd | grep -q "Start accepting TCP connections" || exit 1
docker logs ejabberd | grep -q "error" && exit 1 || exit 0
docker logs ejabberd | grep -q "Error" && exit 1 || exit 0
- name: Save image
run: |
docker image save ${{ steps.ecstag.outputs.tag }} --output ejabberd-latest.tar
- name: Upload image
uses: actions/upload-artifact@v3
with:
name: ejabberd-image
path: ejabberd-latest.tar
- run: |
echo "::notice::To get this image, download ejabberd-image.zip, "\
"uncompress it and run: " \
"docker image load -i ejabberd-latest.tar"