From 6938f559c44e4b9183603aa5d6d60619dff52645 Mon Sep 17 00:00:00 2001 From: Antony Chan Date: Mon, 11 Nov 2024 10:04:22 -0800 Subject: [PATCH] Build validation --- .github/workflows/validate-build.yml | 64 ++++++++++++++++++++++++++++ requirements.txt | 2 + 2 files changed, 66 insertions(+) create mode 100644 .github/workflows/validate-build.yml create mode 100644 requirements.txt diff --git a/.github/workflows/validate-build.yml b/.github/workflows/validate-build.yml new file mode 100644 index 0000000..7bd6bcb --- /dev/null +++ b/.github/workflows/validate-build.yml @@ -0,0 +1,64 @@ +# This workflow will install Python dependencies, run tests and lint with a variety of Python versions +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions + +name: Compile and test C++ + +on: + push: + branches: [ master ] + pull_request: + types: [edited, submitted] + +jobs: + build: + + runs-on: ${{ matrix.os }} + strategy: + matrix: + #os: [ubuntu-20.04, ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-20.04, ubuntu-latest] + python-version: ["3.10"] + + steps: + - name: Fetch sources + uses: actions/checkout@v4 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + cache: pip + + - name: Install gcc toolchain + run: >- + sudo apt-get install + build-essential + libopenblas64-serial-dev + if: startsWith(matrix.os, 'ubuntu') == true + + - name: Install Python dependencies + run: | + pip install --upgrade uv + uv pip install --system meson ninja + + - name: Cache 3rd party C++ projects + uses: actions/cache@v3 + with: + key: ${{ runner.os }}-meson-cache + path: 3rdparty/packagecache/ + + - name: Resolve C++ build dependencies (non-Windows) + run: meson setup build/ + if: startsWith(matrix.os, 'window') == false + + #- name: Resolve C++ build dependencies (msvc toolchain) + # run: meson setup --vsenv build/ + # if: startsWith(matrix.os, 'window') == true + + - name: Build everything + #run: meson compile -C build/ + run: ninja -C build/ all + + - name: Test everything + #run: meson test -C build/ + run: ninja -C build/ test diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e3a29d2 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +# Placeholder config to satisfy the Github CI runner. +# To be converted to pyproject.toml when we expose the Python bindings. \ No newline at end of file