-
Notifications
You must be signed in to change notification settings - Fork 29
42 lines (36 loc) · 1.07 KB
/
generate-tools.yaml
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
name: "Build tools"
on:
pull_request:
paths-ignore:
- 'spectool/**'
jobs:
build_tools_win32:
name: Build all tools for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-latest, windows-latest]
include:
- os: windows-latest
triplet: x64-windows
- os: ubuntu-24.04
triplet: x64-linux
CMAKE_CC: CC=gcc-18
- os: macos-latest
triplet: x64-osx
env:
CMAKE_OPTIONS: -DDEV_MODE=ON
steps:
- name: Get pushed code
uses: actions/checkout@v3
- uses: lukka/get-cmake@latest
- name: Check gcc
run: ls /usr/bin/gcc*
- name: Configure CMake
run: ${{ matrix.CMAKE_CC }} cmake -S . -B _build ${{ env.CMAKE_OPTIONS }}
- name: Build with CMake
run: cmake --build _build --config Debug --parallel
- name: Test installation
run: |
cmake --install _build --config Debug --prefix _built