Add Python bindings #42
Workflow file for this run
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: Build (FreeBSD) | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_freebsd: | |
name: Build on ${{ matrix.box }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
box: | |
- generic/freebsd13 | |
- generic/freebsd14 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Provision VM | |
uses: hummeltech/freebsd-vagrant-action@v2 | |
with: | |
box: ${{ matrix.box }} | |
save_box_to_cache: true | |
- name: Install packages | |
run: sudo pkg install --yes cmake python3 | |
shell: /usr/local/bin/bash --noprofile --norc -euo pipefail {0} | |
- name: Generate build system | |
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX="" -DLIBCPUID_ENABLE_TESTS=ON | |
shell: /usr/local/bin/bash --noprofile --norc -euo pipefail {0} | |
- name: Build | |
run: cmake --build build | |
shell: /usr/local/bin/bash --noprofile --norc -euo pipefail {0} | |
- name: Run cpuid_tool | |
run: | | |
./build/cpuid_tool/cpuid_tool --save=- --all | |
sudo ./build/cpuid_tool/cpuid_tool --rdmsr-raw --rdmsr | |
shell: /usr/local/bin/bash --noprofile --norc -euo pipefail {0} | |
- name: Run tests | |
run: | | |
make -C build consistency | |
make -C build test-old | |
shell: /usr/local/bin/bash --noprofile --norc -euo pipefail {0} | |
- name: Install | |
run: cmake --install build | |
env: | |
DESTDIR: ${{ github.workspace }}/installdir | |
shell: /usr/local/bin/bash --noprofile --norc -euo pipefail {0} |