Skip to content

Merge pull request #552 from AlexeyOplachko/feat/transport-protocol #8

Merge pull request #552 from AlexeyOplachko/feat/transport-protocol

Merge pull request #552 from AlexeyOplachko/feat/transport-protocol #8

Workflow file for this run

name: Multi-Arch CI + CD
on:
push:
branches: [ master, main ]
paths-ignore:
- '**.md'
release:
types: [published]
workflow_dispatch:
env:
REGISTRY: ghcr.io
jobs:
build:
runs-on: ubuntu-latest
outputs:
HEPLIFY_VERSION: ${{ steps.version.outputs.HEPLIFY_VERSION }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Libraries
run: sudo apt-get install -y libpcap-dev libluajit-5.1-dev
- name: LuaJIT
run: git clone https://luajit.org/git/luajit-2.0.git && cd luajit-2.0 && git checkout v2.1 && make CCOPT="-static -fPIC" BUILDMODE="static" && sudo make install
- name: Build
run: |
go mod tidy
make all
- name: Retrieve version
run: |
echo "HEPLIFY_VERSION=$(cat config/config.go | sed -n 's/^.*heplify-server \([0-9.]*\).*/\1/p')" >> $GITHUB_OUTPUT
id: version
docker-push:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
needs: build
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- name: Version Check
run: |
echo "${{ needs.build.outputs.HEPLIFY_VERSION }}"
- name: Set up Docker QEMU
uses: docker/setup-qemu-action@v3.0.0
with:
platforms: amd64, arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.0.0
- name: Log in to the Container registry
uses: docker/login-action@v2.1.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push to GHCR
uses: docker/build-push-action@v5.0.0
with:
platforms: linux/amd64, linux/arm64
file: ./docker/Dockerfile
push: true
tags: |
ghcr.io/sipcapture/heplify-server:multiarch
ghcr.io/sipcapture/heplify-server:${{ needs.build.outputs.HEPLIFY_VERSION || github.event.release.tag_name }}-multiarch
labels: |
dev.heplify-server.image.title=heplify-server
dev.heplify-server.image.version=${{needs.build.outputs.HEPLIFY_VERSION || github.event.release.tag_name }}