mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
CI: split UNIX job
This commit is contained in:
parent
70559537c9
commit
d31e2fd73b
3 changed files with 52 additions and 13 deletions
47
.github/workflows/build_linux.yml
vendored
Normal file
47
.github/workflows/build_linux.yml
vendored
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
name: Build (Linux)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '*'
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_linux:
|
||||||
|
name: Build on ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os:
|
||||||
|
- ubuntu-20.04
|
||||||
|
- ubuntu-22.04
|
||||||
|
- ubuntu-24.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- 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: |
|
||||||
|
echo "RAW dump"
|
||||||
|
./build/cpuid_tool/cpuid_tool --save=-
|
||||||
|
echo "Report"
|
||||||
|
./build/cpuid_tool/cpuid_tool --all
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: |
|
||||||
|
make -C build consistency
|
||||||
|
make -C build test-old
|
||||||
|
|
||||||
|
- name: Install
|
||||||
|
run: |
|
||||||
|
cmake --install build
|
||||||
|
env:
|
||||||
|
DESTDIR: ${{ github.workspace }}/installdir
|
|
@ -1,4 +1,4 @@
|
||||||
name: Build (UNIX)
|
name: Build (macOS)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -9,15 +9,14 @@ on:
|
||||||
- '*'
|
- '*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_unix:
|
build_macos:
|
||||||
name: Build
|
name: Build on ${{ matrix.os.name }}
|
||||||
runs-on: ${{ matrix.os.label }}
|
runs-on: ${{ matrix.os.label }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- { label: macos-latest, name: macos-aarch64 }
|
- { label: macos-latest, name: macos-aarch64 }
|
||||||
- { label: macos-13, name: macos-x86_64 }
|
- { label: macos-13, name: macos-x86_64 }
|
||||||
- { label: ubuntu-latest, name: linux-x86_64 }
|
|
||||||
env:
|
env:
|
||||||
OS_NAME: ${{ matrix.os.name }}
|
OS_NAME: ${{ matrix.os.name }}
|
||||||
|
|
||||||
|
@ -30,13 +29,6 @@ jobs:
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build build
|
run: cmake --build build
|
||||||
|
|
||||||
# - name: Run cpuid_tool
|
|
||||||
# run: |
|
|
||||||
# echo "RAW dump"
|
|
||||||
# ./build/cpuid_tool/cpuid_tool --save=-
|
|
||||||
# echo "Report"
|
|
||||||
# ./build/cpuid_tool/cpuid_tool --all
|
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
make -C build consistency
|
make -C build consistency
|
|
@ -24,8 +24,8 @@ libcpuid support varies depending on the features:
|
||||||
|----|----|-------|---------|
|
|----|----|-------|---------|
|
||||||
|DragonFly BSD|:heavy_check_mark: |:grey_question: ([`cpuctl` kernel module](https://man.freebsd.org/cgi/man.cgi?query=cpuctl))|:x:|
|
|DragonFly BSD|:heavy_check_mark: |:grey_question: ([`cpuctl` kernel module](https://man.freebsd.org/cgi/man.cgi?query=cpuctl))|:x:|
|
||||||
|FreeBSD|:heavy_check_mark: ![FreeBSD workflow status](https://github.com/anrieff/libcpuid/actions/workflows/build_freebsd.yml/badge.svg)|:heavy_check_mark: ([`cpuctl` kernel module](https://man.freebsd.org/cgi/man.cgi?query=cpuctl))|:heavy_check_mark:¹ ([`cpuid` out-of-tree kernel module](https://github.com/anrieff/libcpuid/tree/master/drivers/arm/freebsd))|
|
|FreeBSD|:heavy_check_mark: ![FreeBSD workflow status](https://github.com/anrieff/libcpuid/actions/workflows/build_freebsd.yml/badge.svg)|:heavy_check_mark: ([`cpuctl` kernel module](https://man.freebsd.org/cgi/man.cgi?query=cpuctl))|:heavy_check_mark:¹ ([`cpuid` out-of-tree kernel module](https://github.com/anrieff/libcpuid/tree/master/drivers/arm/freebsd))|
|
||||||
|Linux|:heavy_check_mark: ![UNIX workflow status](https://github.com/anrieff/libcpuid/actions/workflows/unix.yml/badge.svg)|:heavy_check_mark: ([`msr` kernel module](https://man7.org/linux/man-pages/man4/msr.4.html))|:heavy_check_mark:¹ ([`cpuid` out-of-tree kernel module](https://github.com/anrieff/libcpuid/tree/master/drivers/arm/linux))|
|
|Linux|:heavy_check_mark: ![Linux workflow status](https://github.com/anrieff/libcpuid/actions/workflows/build_linux.yml/badge.svg)|:heavy_check_mark: ([`msr` kernel module](https://man7.org/linux/man-pages/man4/msr.4.html))|:heavy_check_mark:¹ ([`cpuid` out-of-tree kernel module](https://github.com/anrieff/libcpuid/tree/master/drivers/arm/linux))|
|
||||||
|macOS|:heavy_check_mark: ![UNIX workflow status](https://github.com/anrieff/libcpuid/actions/workflows/unix.yml/badge.svg)|:x:|:x:|
|
|macOS|:heavy_check_mark: ![macOS workflow status](https://github.com/anrieff/libcpuid/actions/workflows/build_macos.yml/badge.svg)|:x:|:x:|
|
||||||
|NetBSD|:grey_question:|:x:|:x:|
|
|NetBSD|:grey_question:|:x:|:x:|
|
||||||
|OpenBSD|:grey_question:|:x:|:x:|
|
|OpenBSD|:grey_question:|:x:|:x:|
|
||||||
|Windows|:heavy_check_mark: ![Windows workflow status](https://github.com/anrieff/libcpuid/actions/workflows/build_windows.yml/badge.svg)|:heavy_check_mark: ([`msr` driver](https://github.com/anrieff/libcpuid/tree/master/drivers/x86/windows/msr))|:x:|
|
|Windows|:heavy_check_mark: ![Windows workflow status](https://github.com/anrieff/libcpuid/actions/workflows/build_windows.yml/badge.svg)|:heavy_check_mark: ([`msr` driver](https://github.com/anrieff/libcpuid/tree/master/drivers/x86/windows/msr))|:x:|
|
||||||
|
|
Loading…
Reference in a new issue