2024-07-31 13:36:09 +00:00
|
|
|
name: Build (FreeBSD)
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
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
|
2024-08-02 14:52:43 +00:00
|
|
|
uses: hummeltech/freebsd-vagrant-action@v2
|
2024-07-31 13:36:09 +00:00
|
|
|
with:
|
|
|
|
box: ${{ matrix.box }}
|
|
|
|
save_box_to_cache: true
|
|
|
|
|
|
|
|
- name: Install packages
|
|
|
|
run: sudo pkg install --yes cmake python3
|
|
|
|
|
|
|
|
- name: Generate build system
|
|
|
|
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX="" -DLIBCPUID_ENABLE_TESTS=ON
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: cmake --build build
|
|
|
|
|
|
|
|
- name: Run cpuid_tool
|
|
|
|
run: |
|
2024-07-31 14:39:42 +00:00
|
|
|
./build/cpuid_tool/cpuid_tool --save=- --all
|
|
|
|
sudo ./build/cpuid_tool/cpuid_tool --rdmsr-raw --rdmsr
|
2024-07-31 13:36:09 +00:00
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
make -C build consistency
|
|
|
|
make -C build test-old
|
2024-07-31 14:39:42 +00:00
|
|
|
|
|
|
|
- name: Install
|
|
|
|
run: cmake --install build
|
|
|
|
env:
|
|
|
|
DESTDIR: ${{ github.workspace }}/installdir
|