-
Notifications
You must be signed in to change notification settings - Fork 108
49 lines (41 loc) · 1.12 KB
/
unix.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Build (UNIX)
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build_unix:
name: Build
runs-on: ${{ matrix.os.label }}
strategy:
matrix:
os:
- { label: macos-latest, name: macos }
- { label: ubuntu-latest, name: linux }
env:
OS_NAME: ${{ matrix.os.name }}
steps:
- uses: actions/checkout@v3
- name: Generate build system
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX="" -DLIBCPUID_TESTS:BOOL=ON
- name: Build
run: cmake --build build
- name: Run tests
run: |
make -C build consistency
make -C build test-old
- name: Install
run: |
cmake --install build
install -v AUTHORS ChangeLog COPYING Readme.md "$DESTDIR"
echo -e "Operating system and compiler version:\n$(uname -a)\n$(cc --version)" > "$DESTDIR/Readme.$OS_NAME"
env:
DESTDIR: ${{ github.workspace }}/installdir
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os.name }}
path: installdir/*