build #1494
This file contains hidden or 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" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| - feature/* | |
| - waspd/* | |
| tags: | |
| - v* | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * 1' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| linux-x86_64: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - script: linux-x86_64/ubuntu-24.04 | |
| image: rocstreaming/env-ubuntu:24.04 | |
| - script: linux-x86_64/ubuntu-22.04 | |
| image: rocstreaming/env-ubuntu:22.04 | |
| - script: linux-x86_64/ubuntu-20.04 | |
| image: rocstreaming/env-ubuntu:20.04 | |
| - script: linux-x86_64/ubuntu-18.04 | |
| image: rocstreaming/env-ubuntu:18.04 | |
| - script: linux-x86_64/ubuntu-16.04 | |
| image: rocstreaming/env-ubuntu:16.04 | |
| - script: linux-x86_64/ubuntu-14.04 | |
| image: rocstreaming/env-ubuntu:14.04 | |
| - script: linux-x86_64/debian | |
| image: rocstreaming/env-debian | |
| - script: linux-x86_64/fedora | |
| image: rocstreaming/env-fedora | |
| - script: linux-x86_64/opensuse | |
| image: rocstreaming/env-opensuse | |
| - script: linux-x86_64/archlinux | |
| image: rocstreaming/env-archlinux | |
| - script: linux-x86_64/alpine | |
| image: rocstreaming/env-alpine | |
| name: ${{ matrix.script }} | |
| steps: | |
| - name: Pull docker image | |
| run: docker pull ${{ matrix.image }} | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Build and test | |
| run: | | |
| scripts/ci_checks/docker.sh ${{ matrix.image }} scripts/ci_checks/${{ matrix.script }}.sh | |
| - name: Handle failure | |
| if: failure() | |
| run: | | |
| scripts/ci_checks/failure.sh | |
| linux-arm: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - script: linux-arm/aarch64-linux-gnu-gcc-7.4 | |
| image: rocstreaming/toolchain-aarch64-linux-gnu:gcc-7.4 | |
| - script: linux-arm/arm-linux-gnueabihf-gcc-4.9 | |
| image: rocstreaming/toolchain-arm-linux-gnueabihf:gcc-4.9 | |
| - script: linux-arm/arm-bcm2708hardfp-linux-gnueabi-gcc-4.7 | |
| image: rocstreaming/toolchain-arm-bcm2708hardfp-linux-gnueabi:gcc-4.7 | |
| name: ${{ matrix.script }} | |
| steps: | |
| - name: Pull docker image | |
| run: docker pull ${{ matrix.image }} | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Build and test | |
| run: | | |
| scripts/ci_checks/docker.sh ${{ matrix.image }} scripts/ci_checks/${{ matrix.script }}.sh | |
| - name: Handle failure | |
| if: failure() | |
| run: | | |
| scripts/ci_checks/failure.sh | |
| linux-mips: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - script: linux-mips/openwrt-linux-musl | |
| image: rocstreaming/toolchain-mips-openwrt-linux-atheros:17.01 | |
| - script: linux-mips/openwrt-linux-uclibc | |
| image: rocstreaming/toolchain-mips-openwrt-linux-atheros:12.09 | |
| name: ${{ matrix.script }} | |
| steps: | |
| - name: Pull docker image | |
| run: docker pull ${{ matrix.image }} | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Build and test | |
| run: | | |
| scripts/ci_checks/docker.sh ${{ matrix.image }} scripts/ci_checks/${{ matrix.script }}.sh | |
| - name: Handle failure | |
| if: failure() | |
| run: | | |
| scripts/ci_checks/failure.sh | |
| linux-checks: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - script: linux-checks/conditional-build | |
| image: rocstreaming/env-ubuntu:nolibs | |
| - script: linux-checks/static-shared | |
| image: rocstreaming/env-ubuntu:nolibs | |
| - script: linux-checks/debug-build | |
| image: rocstreaming/env-ubuntu:nolibs | |
| - script: linux-checks/sanitizers | |
| image: rocstreaming/env-ubuntu | |
| - script: linux-checks/valgrind | |
| image: rocstreaming/env-ubuntu | |
| - script: linux-checks/check-formatting | |
| image: rocstreaming/env-ubuntu | |
| - script: linux-checks/pulseaudio-versions | |
| image: rocstreaming/env-ubuntu | |
| name: ${{ matrix.script }} | |
| steps: | |
| - name: Pull docker image | |
| run: docker pull ${{ matrix.image }} | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Build and test | |
| run: | | |
| scripts/ci_checks/docker.sh ${{ matrix.image }} scripts/ci_checks/${{ matrix.script }}.sh | |
| - name: Handle failure | |
| if: failure() | |
| run: | | |
| scripts/ci_checks/failure.sh | |
| android-linux: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - image: rocstreaming/toolchain-linux-android:ndk21 | |
| toolchain: aarch64-linux-android29 | |
| shortname: android29-aarch64 | |
| - image: rocstreaming/toolchain-linux-android:ndk21 | |
| toolchain: armv7a-linux-androideabi29 | |
| shortname: android29-armv7a | |
| - image: rocstreaming/toolchain-linux-android:ndk21 | |
| toolchain: x86_64-linux-android29 | |
| shortname: android29-x86_64 | |
| - image: rocstreaming/toolchain-linux-android:ndk21 | |
| toolchain: i686-linux-android29 | |
| shortname: android29-i686 | |
| runs-on: ubuntu-latest | |
| name: ${{ matrix.shortname }}/linux | |
| steps: | |
| - name: Pull docker image | |
| run: docker pull ${{ matrix.image }} | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Build | |
| run: | | |
| scripts/ci_checks/docker.sh ${{ matrix.image }} \ | |
| scripts/ci_checks/android/linux.sh ${{ matrix.toolchain }} | |
| - name: Handle failure | |
| if: failure() | |
| run: | | |
| scripts/ci_checks/failure.sh | |
| android-macos: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - toolchain: aarch64-linux-android29 | |
| abi: aarch64 | |
| api: 29 | |
| ndk: 25.2.9519653 | |
| build_tools: 28.0.3 | |
| cmake: 3.10.2.4988404 | |
| runs-on: macos-latest | |
| env: | |
| TOOLCHAIN: ${{ matrix.toolchain }} | |
| ABI: ${{ matrix.abi }} | |
| API: ${{ matrix.api }} | |
| NDK_VERSION: ${{ matrix.ndk }} | |
| name: android${{ matrix.api }}-${{ matrix.abi }}/macos | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Install Android SDK | |
| uses: android-actions/setup-android@v3 | |
| with: | |
| packages: '' | |
| - name: Install Android components | |
| run: | | |
| sdkmanager 'platforms;android-${{ matrix.api }}' | |
| sdkmanager 'build-tools;${{ matrix.build_tools }}' | |
| sdkmanager 'ndk;${{ matrix.ndk }}' | |
| sdkmanager 'cmake;${{ matrix.cmake }}' | |
| - name: Build | |
| run: | | |
| scripts/ci_checks/android/macos.sh | |
| - name: Handle failure | |
| if: failure() | |
| run: | | |
| scripts/ci_checks/failure.sh | |
| android-emu: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - abi: x86_64 | |
| api: 29 | |
| ndk: 25.2.9519653 | |
| cmake: 3.10.2.4988404 | |
| runs-on: ubuntu-latest | |
| env: | |
| ABI: ${{ matrix.abi }} | |
| API: ${{ matrix.api }} | |
| name: android${{ matrix.api }}-${{ matrix.abi }}/emu | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Enable KVM | |
| run: | | |
| echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' \ | |
| | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
| sudo udevadm control --reload-rules | |
| sudo udevadm trigger --name-match=kvm | |
| - name: Setup AVD cache | |
| uses: actions/cache@v4 | |
| id: avd-cache | |
| with: | |
| path: | | |
| ~/.android/avd/* | |
| ~/.android/adb* | |
| key: avd-${{ matrix.abi }}-android${{ matrix.api }}-ndk${{ matrix.ndk }} | |
| - name: Populate AVD cache | |
| if: steps.avd-cache.outputs.cache-hit != 'true' | |
| uses: reactivecircus/android-emulator-runner@v2 | |
| with: | |
| api-level: ${{ matrix.api }} | |
| arch: ${{ matrix.abi }} | |
| ndk: ${{ matrix.ndk }} | |
| cmake: ${{ matrix.cmake }} | |
| force-avd-creation: false | |
| script: | | |
| echo "Generated AVD" | |
| - name: Install dependencies | |
| run: | | |
| scripts/android_emu/run.sh install | |
| - name: Build | |
| run: | | |
| scripts/android_emu/run.sh build | |
| - name: Run tests | |
| uses: reactivecircus/android-emulator-runner@v2 | |
| with: | |
| api-level: ${{ matrix.api }} | |
| arch: ${{ matrix.abi }} | |
| ndk: ${{ matrix.ndk }} | |
| cmake: ${{ matrix.cmake }} | |
| force-avd-creation: false | |
| script: | | |
| scripts/android_emu/run.sh prep | |
| scripts/android_emu/run.sh test | |
| - name: Handle failure | |
| if: failure() | |
| run: | | |
| scripts/ci_checks/failure.sh | |
| macos: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - macos-arch: x86_64 | |
| macos-version: 11 | |
| script: standard-build | |
| - macos-arch: x86_64 | |
| macos-version: 12 | |
| script: standard-build | |
| - macos-arch: x86_64 | |
| macos-version: 13 | |
| script: standard-build | |
| - macos-arch: arm64 | |
| macos-version: 14 | |
| script: standard-build | |
| - macos-arch: arm64 | |
| macos-version: 14 | |
| script: build-3rdparty | |
| - macos-arch: arm64 | |
| macos-version: 14 | |
| script: universal-binaries | |
| runs-on: macos-${{ matrix.macos-version }} | |
| name: macos${{ matrix.macos-version }}-${{ matrix.macos-arch }}/${{ matrix.script }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Build and test | |
| run: | | |
| scripts/ci_checks/macos/${{ matrix.script }}.sh | |
| - name: Handle failure | |
| if: failure() | |
| run: | | |
| scripts/ci_checks/failure.sh |