Merge pull request #357 from fabinsch/fix-win-build #184
This file contains 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 - ArchLinux | |
on: | |
push: | |
pull_request: | |
paths-ignore: | |
- CHANGELOG.md | |
jobs: | |
build-with-arch: | |
runs-on: "ubuntu-latest" | |
container: | |
image: archlinux/archlinux:base-devel | |
steps: | |
- run: pacman -Syu --noconfirm cmake eigen git libmatio python-scipy simde | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- run: cmake -B build -S . -DBUILD_PYTHON_INTERFACE=ON | |
- run: cmake --build build | |
- run: cmake --build build -t test |