perf: optimize Highway row kernels #11
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: ${{ matrix.name }} | |
| runs-on: ${{ matrix.runner }} | |
| timeout-minutes: 45 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: linux-ubuntu24.04-x64 | |
| runner: ubuntu-24.04 | |
| platform: linux | |
| artifact_name: delogohd-linux-ubuntu24.04-x64 | |
| artifact: build/artifacts/*.deb | |
| - name: linux-ubuntu24.04-arm64 | |
| runner: ubuntu-24.04-arm | |
| platform: linux | |
| artifact_name: delogohd-linux-ubuntu24.04-arm64 | |
| artifact: build/artifacts/*.deb | |
| - name: linux-ubuntu26.04-x64 | |
| runner: ubuntu-26.04 | |
| platform: linux | |
| artifact_name: delogohd-linux-ubuntu26.04-x64 | |
| artifact: build/artifacts/*.deb | |
| - name: linux-ubuntu26.04-arm64 | |
| runner: ubuntu-26.04-arm | |
| platform: linux | |
| artifact_name: delogohd-linux-ubuntu26.04-arm64 | |
| artifact: build/artifacts/*.deb | |
| - name: windows-x64 | |
| runner: windows-2025-vs2026 | |
| platform: windows | |
| generator: Visual Studio 18 2026 | |
| arch: x64 | |
| artifact_name: delogohd-windows-x64 | |
| artifact: build/ci/Release/DelogoHD.dll | |
| - name: windows-arm64 | |
| runner: windows-11-vs2026-arm | |
| platform: windows | |
| generator: Visual Studio 18 2026 | |
| arch: ARM64 | |
| artifact_name: delogohd-windows-arm64 | |
| artifact: build/ci/Release/DelogoHD.dll | |
| - name: macos-26-arm64 | |
| runner: macos-26 | |
| platform: macos | |
| artifact_name: delogohd-macos-26-arm64 | |
| artifact: build/ci/libDelogoHD.dylib | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Debian build dependencies | |
| if: matrix.platform == 'linux' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends \ | |
| build-essential \ | |
| ca-certificates \ | |
| cmake \ | |
| debhelper \ | |
| git \ | |
| pkgconf | |
| - name: Build Debian package | |
| if: matrix.platform == 'linux' | |
| run: | | |
| . /etc/os-release | |
| package_version="$(dpkg-parsechangelog -S Version)" | |
| os_suffix="ubuntu${VERSION_ID}" | |
| package_version="${package_version}+${os_suffix}" | |
| sed -i "1s/([^)]*)/(${package_version})/" debian/changelog | |
| dpkg-parsechangelog -S Version | |
| dpkg-buildpackage -us -uc -b -j4 | |
| mkdir -p build/artifacts | |
| cp ../dualsynth-delogohd_*.deb build/artifacts/ | |
| - name: Configure Windows | |
| if: matrix.platform == 'windows' | |
| shell: pwsh | |
| run: > | |
| cmake -S . -B build/ci | |
| -G "${{ matrix.generator }}" | |
| -A ${{ matrix.arch }} | |
| -DDELOGOHD_BUILD_TEST_TOOLS=OFF | |
| -DDELOGOHD_COPY_RELEASE=OFF | |
| - name: Build | |
| if: matrix.platform == 'windows' | |
| run: cmake --build build/ci --config Release --parallel 4 | |
| - name: Configure macOS | |
| if: matrix.platform == 'macos' | |
| run: > | |
| cmake -S . -B build/ci | |
| -DCMAKE_BUILD_TYPE=Release | |
| -DDELOGOHD_BUILD_TEST_TOOLS=OFF | |
| -DDELOGOHD_COPY_RELEASE=OFF | |
| - name: Build macOS | |
| if: matrix.platform == 'macos' | |
| run: cmake --build build/ci --parallel 4 | |
| - name: Upload plugin | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: ${{ matrix.artifact_name }} | |
| path: ${{ matrix.artifact }} | |
| if-no-files-found: error |