Build Images #54
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
name: Build Images | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'The Kodi version' | |
required: true | |
type: string | |
default: '20.0' | |
codename: | |
description: 'The Kodi codename' | |
required: true | |
type: string | |
default: 'Nexus' | |
tag_latest: | |
description: 'Tag as latest' | |
required: true | |
type: boolean | |
jobs: | |
build_amd64: | |
uses: ./.github/workflows/build.yml | |
with: | |
runs_on: ubuntu-22.04 | |
platform: linux/amd64 | |
tag: amd64 | |
version: ${{ github.event.inputs.version }} | |
codename: ${{ github.event.inputs.codename }} | |
secrets: inherit | |
build_arm64: | |
uses: ./.github/workflows/build.yml | |
with: | |
runs_on: buildjet-2vcpu-ubuntu-2204-arm | |
platform: linux/arm64 | |
tag: arm64 | |
version: ${{ github.event.inputs.version }} | |
codename: ${{ github.event.inputs.codename }} | |
secrets: inherit | |
build_arm32: | |
uses: ./.github/workflows/build.yml | |
with: | |
runs_on: buildjet-2vcpu-ubuntu-2204-arm | |
platform: linux/arm/v7 | |
tag: arm32 | |
version: ${{ github.event.inputs.version }} | |
codename: ${{ github.event.inputs.codename }} | |
cflags: '-march=armv7-a -mfpu=neon-vfpv4 -mfloat-abi=hard -mvectorize-with-neon-quad' | |
with_cpu: '-DWITH_CPU=arm' | |
secrets: inherit | |
combine: | |
needs: [build_amd64, build_arm64, build_arm32] | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Create and push manifest images | |
uses: int128/docker-manifest-create-action@v2 | |
with: | |
tags: fhriley/kodi-headless-novnc:${{ github.event.inputs.version }} | |
sources: | | |
fhriley/kodi-headless-novnc:${{ github.event.inputs.version }}-amd64 | |
fhriley/kodi-headless-novnc:${{ github.event.inputs.version }}-arm64 | |
fhriley/kodi-headless-novnc:${{ github.event.inputs.version }}-arm32 | |
test: | |
needs: [combine] | |
runs-on: ubuntu-22.04 | |
container: | |
image: fhriley/kodi-headless-novnc:${{ github.event.inputs.version }} | |
steps: | |
- | |
name: Check Missing Libraries | |
run: | | |
ldd /usr/lib/kodi/kodi-x11 | ( ! grep -i "not found" ) |