Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build_omnios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
prepare: |
pkg install developer/cmake developer/gcc13 runtime/python-312
run: |
set -e

# Generate build system
cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX="" -DLIBCPUID_ENABLE_TESTS=ON

Expand All @@ -38,7 +40,7 @@ jobs:

# Run cpuid_tool
./build/cpuid_tool/cpuid_tool --save=- --all
pfexec ./build/cpuid_tool/cpuid_tool --rdmsr-raw --rdmsr
./build/cpuid_tool/cpuid_tool --rdmsr-raw --rdmsr

# Run tests
make -C build consistency
Expand Down