-
Notifications
You must be signed in to change notification settings - Fork 10
117 lines (105 loc) · 3.45 KB
/
builds.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Algebra plugins library, part of the ACTS project (R&D line)
#
# (c) 2021-2023 CERN for the benefit of the ACTS project
#
# Mozilla Public License Version 2.0
name: Builds
on:
push:
pull_request:
branches:
- main
- 'release/**'
# All the different build/test jobs.
jobs:
# Native build jobs.
native:
# The different build modes to test.
strategy:
matrix:
BUILD_TYPE: ["Release", "Debug"]
PLATFORM:
- OS: "ubuntu-latest"
GENERATOR: "Unix Makefiles"
- OS: "macos-latest"
GENERATOR: "Xcode"
- OS: "windows-latest"
GENERATOR: "Visual Studio 17 2022"
# The system to run on.
runs-on: ${{ matrix.PLATFORM.OS }}
# The build/test steps to execute.
steps:
# Use a standard checkout of the code.
- uses: actions/checkout@v2
# Run the CMake configuration.
- name: Configure
run: cmake --preset default-x86-64
-S ${{ github.workspace }} -B build
-G "${{ matrix.PLATFORM.GENERATOR }}"
# Perform the build.
- name: Build
run: cmake --build build --config ${{ matrix.BUILD_TYPE }}
# Run the unit test(s).
- name: Test
run: |
cd build
ctest --output-on-failure -C ${{ matrix.BUILD_TYPE }}
# Containerised build jobs.
container:
# The different build modes to test.
strategy:
matrix:
BUILD_TYPE: ["Release", "Debug"]
PLATFORM:
- NAME: "HOST"
CONTAINER: "ghcr.io/acts-project/ubuntu2004:v43"
OPTIONS: --preset eigen -DALGEBRA_PLUGINS_USE_SYSTEM_EIGEN3=TRUE
- NAME: "HOST"
CONTAINER: "ghcr.io/acts-project/ubuntu2004:v43"
OPTIONS: --preset eigen
- NAME: "HOST"
CONTAINER: "ghcr.io/acts-project/ubuntu2004:v43"
OPTIONS: -DALGEBRA_PLUGINS_INCLUDE_SMATRIX=TRUE
- NAME: "HOST"
CONTAINER: "ghcr.io/acts-project/ubuntu2004:v43"
OPTIONS: --preset vc
- NAME: "HOST"
CONTAINER: "ghcr.io/acts-project/ubuntu2004:v43"
OPTIONS: --preset vecmem
- NAME: "HOST"
CONTAINER: "ghcr.io/acts-project/ubuntu2004:v43"
OPTIONS: --preset fastor
- NAME: "CUDA"
CONTAINER: "ghcr.io/acts-project/ubuntu2004_cuda:v43"
OPTIONS: --preset cuda
- NAME: "SYCL"
CONTAINER: "ghcr.io/acts-project/ubuntu2004_oneapi:v43"
OPTIONS: --preset sycl
# The system to run on.
runs-on: ubuntu-latest
container: ${{ matrix.PLATFORM.CONTAINER }}
# Use BASH as the shell from the image.
defaults:
run:
shell: bash
# The build/test steps to execute.
steps:
# Use a standard checkout of the code.
- uses: actions/checkout@v2
# Run the CMake configuration.
- name: Configure
run: |
source ${GITHUB_WORKSPACE}/.github/ci_setup.sh ${{ matrix.PLATFORM.NAME }}
cmake ${{ matrix.PLATFORM.OPTIONS }} -DCMAKE_BUILD_TYPE=${{ matrix.BUILD_TYPE }} -S ${GITHUB_WORKSPACE} -B build
# Perform the build.
- name: Build
run: |
source ${GITHUB_WORKSPACE}/.github/ci_setup.sh ${{ matrix.PLATFORM.NAME }}
cmake --build build
# Run the unit test(s).
- name: Test
if: "matrix.PLATFORM.NAME != 'CUDA'"
run: |
cd build
source ${GITHUB_WORKSPACE}/.github/ci_setup.sh ${{ matrix.PLATFORM.NAME }}
ctest --output-on-failure