MVE GitHub Actions CI #16
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: MVE GitHub Actions CI | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| schedule: | |
| # every 1st day of month at 00:00 UTC | |
| - cron: "0 0 1 * *" | |
| permissions: | |
| contents: read | |
| checks: read | |
| pull-requests: read | |
| jobs: | |
| build: | |
| name: ${{ matrix.platform.name }} | |
| runs-on: ${{ matrix.platform.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: | |
| - { name: "Ubuntu 22.04, GCC, x86_64", os: ubuntu-22.04, cpp_compiler: g++, qmake_spec: linux-g++ } | |
| - { name: "Ubuntu 22.04, Clang, x86_64", os: ubuntu-22.04, cpp_compiler: clang++, qmake_spec: linux-clang } | |
| - { name: "Ubuntu 24.04, GCC, x86_64", os: ubuntu-24.04, cpp_compiler: g++, qmake_spec: linux-g++ } | |
| - { name: "Ubuntu 24.04, Clang, x86_64", os: ubuntu-24.04, cpp_compiler: clang++, qmake_spec: linux-clang } | |
| - { name: "macOS 14, Clang, arm64", os: macos-14, cpp_compiler: clang++, qmake_spec: macx-clang } | |
| - { name: "macOS 15, Clang, arm64", os: macos-15, cpp_compiler: clang++, qmake_spec: macx-clang } | |
| env: | |
| CXX: ${{ matrix.platform.cpp_compiler }} | |
| QMAKE_SPEC: ${{ matrix.platform.qmake_spec }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Ubuntu dependencies | |
| if: runner.os == 'Linux' | |
| run: | | |
| echo "::group::apt-get update" | |
| sudo apt-get update | |
| echo "::endgroup::" | |
| echo "::group::apt-get upgrade" | |
| sudo apt-get upgrade -y | |
| echo "::endgroup::" | |
| echo "::group::apt-get install" | |
| sudo apt-get install \ | |
| build-essential \ | |
| clang \ | |
| libgl-dev \ | |
| libgtest-dev \ | |
| libjpeg-turbo8-dev \ | |
| libomp-dev \ | |
| libpng-dev \ | |
| libqt5opengl5-dev \ | |
| libtiff-dev \ | |
| pkg-config \ | |
| zlib1g-dev | |
| echo "::endgroup::" | |
| - name: Install macOS dependencies | |
| if: runner.os == 'macOS' | |
| run: | | |
| echo "::group::brew update" | |
| brew update | |
| echo "::endgroup::" | |
| echo "::group::brew install" | |
| brew install -q \ | |
| googletest \ | |
| jpeg-turbo \ | |
| libpng \ | |
| libtiff \ | |
| qt@5 | |
| echo "::endgroup::" | |
| echo "::group::brew link" | |
| brew link qt@5 | |
| echo "::endgroup::" | |
| - name: Build (U)MVE on Linux/macOS | |
| run: | | |
| ${CXX} --version | |
| if [ "`uname`" = "Darwin" ]; then | |
| export NUM_CPU_CORES="`sysctl -n hw.ncpu`" | |
| else | |
| export NUM_CPU_CORES="`nproc`" | |
| fi | |
| echo "::group::Build MVE" | |
| make -j${NUM_CPU_CORES} | |
| echo "::endgroup":: | |
| echo "::group::Build UMVE" | |
| qmake -v | |
| pushd apps/umve | |
| qmake -spec ${QMAKE_SPEC} | |
| make -j${NUM_CPU_CORES} | |
| popd | |
| echo "::endgroup::" | |
| echo "::group::Build tests" | |
| make -j${NUM_CPU_CORES} test | |
| echo "::endgroup::" | |
| - name: Run tests | |
| run: ./tests/test | |