Skip to content

Merge pull request #3803 from purecloudlabs/dialog_contact_crash_fix #2849

Merge pull request #3803 from purecloudlabs/dialog_contact_crash_fix

Merge pull request #3803 from purecloudlabs/dialog_contact_crash_fix #2849

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Multi-Architecture Build
# Controls when the action will run.
on:
# Triggers the workflow on all push or pull request events
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build_multiarch:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
image: ubuntu:${{ matrix.os }}
options: >-
-v sources:/__w/${{ github.event.repository.name }}/${{ github.event.repository.name }}
env:
COMPILER: ${{ matrix.compiler }}
BUILD_OS: ubuntu:${{ matrix.os }}
strategy:
fail-fast: false
matrix:
compiler: ['gcc-i386-cross', 'clang-i386-cross', 'gcc-mips64-cross', 'gcc-arm32-cross', 'gcc-arm64-cross', 'gcc-arm32-qemu-cross', 'gcc-arm64-qemu-cross', 'clang-arm32-qemu-cross', 'clang-arm64-qemu-cross']
os: [22.04]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Install git
run: |
apt-get update
apt-get install -y git lsb-release gnupg2 wget
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
submodules: recursive
# Cache the compiler cache
- name: Cache the compiler cache
uses: actions/cache@v4
if: endsWith(matrix.compiler, '-qemu-cross')
with:
path: ccache
key: ccache-${{ matrix.os }}-${{ matrix.compiler }}-${{ github.run_id }}
restore-keys: |
ccache-${{ matrix.os }}-${{ matrix.compiler }}
- name: Start Docker container
if: endsWith(matrix.compiler, '-cross')
run: sh -x scripts/build/start_container.sh
- name: Install dependencies
run: sh -x scripts/build/install_depends.sh
- name: Zero out compiler cache stats
if: endsWith(matrix.compiler, '-qemu-cross')
run: scripts/build/zero_ccache_stats.sh
- name: Build
run: sh -x scripts/build/do_build.sh
- name: Print compiler cache stats
if: endsWith(matrix.compiler, '-qemu-cross')
run: scripts/build/print_ccache_stats.sh
all_done:
needs: build_multiarch
uses: ./.github/workflows/.notify.yml
with:
job_name: "Multi-Architecture Build"
job_result: ${{ needs.build_multiarch.result }}
if: ${{ always() }}