-
Notifications
You must be signed in to change notification settings - Fork 86
189 lines (163 loc) · 5.64 KB
/
build.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
name: Build
on:
push:
paths-ignore:
- 'README.md'
- 'INSTALL.md'
- 'docs/**'
pull_request:
paths-ignore:
- 'README.md'
- 'INSTALL.md'
- 'docs/**'
jobs:
run:
strategy:
matrix:
include:
- name: "[Ubuntu] gcc-12"
os: ubuntu-22.04
CC: gcc-12
CXX: g++-12
CXXFLAGS: -Wno-maybe-uninitialized
FC: gfortran-12
GCOV: gcov-12
OCCA_COVERAGE: 1
OCCA_FORTRAN_ENABLED: 1
- name: "[Ubuntu] CMake + gcc-12"
os: ubuntu-22.04
CC: gcc-12
CXX: g++-12
CXXFLAGS: -Wno-maybe-uninitialized -Wno-cpp
FC: gfortran-12
OCCA_FORTRAN_ENABLED: 1
useCMake: true
- name: "[Ubuntu] clang-14"
os: ubuntu-22.04
CC: clang-14
CXX: clang++-14
CXXFLAGS: -Wno-uninitialized
OCCA_COVERAGE: 0
- name: "[Ubuntu] clang-13"
os: ubuntu-22.04
CC: clang-13
CXX: clang++-13
CXXFLAGS: -Wno-uninitialized
OCCA_COVERAGE: 0
- name: "[Ubuntu] CMake + Intel/LLVM"
os: ubuntu-22.04
CC: icx
CXX: icpx
FC: ifx
CXXFLAGS: -Wno-uninitialized
OCCA_COVERAGE: 0
useCMake: true
useoneAPI: true
- name: "[MacOS] clang"
os: macos-12
CC: clang
CXX: clang++
CXXFLAGS: -Wno-uninitialized
runs-on: ${{ matrix.os }}
name: ${{ matrix.name }}
env:
CC: ${{ matrix.CC }}
CXX: ${{ matrix.CXX }}
FC: ${{ matrix.FC }}
CXXFLAGS: -O3 -Wall -pedantic -Wshadow -Wsign-compare -Wuninitialized -Wtype-limits -Wignored-qualifiers -Wempty-body -Wextra -Wno-unused-parameter -Werror -Wno-strict-aliasing ${{ matrix.CXXFLAGS }}
OCCA_CXXFLAGS: -O3
GCOV: ${{ matrix.GCOV }}
OCCA_COVERAGE: ${{ matrix.OCCA_COVERAGE }}
OCCA_FORTRAN_ENABLED: ${{ matrix.OCCA_FORTRAN_ENABLED }}
FORTRAN_EXAMPLES: ${{ matrix.OCCA_FORTRAN_ENABLED }}
steps:
- uses: actions/checkout@v3
- name: add oneAPI to apt
if: ${{ matrix.useoneAPI }}
shell: bash
run: |
cd /tmp
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
sudo add-apt-repository "deb https://apt.repos.intel.com/oneapi all main"
- name: install oneAPI dpcpp compiler
if: ${{ matrix.useoneAPI }}
shell: bash
run: |
sudo apt update
sudo apt install intel-oneapi-compiler-dpcpp-cpp
sudo apt install intel-oneapi-compiler-fortran
- name: Compiler info
if: ${{ !matrix.useCMake }}
run: make -j 16 info
- name: CMake configure
if: ${{ matrix.useCMake && !matrix.useoneAPI}}
run: |
cmake -S . -B build \
-DCMAKE_BUILD_TYPE="RelWithDebInfo" \
-DCMAKE_INSTALL_PREFIX=install \
-DCMAKE_C_COMPILER=${CC} \
-DCMAKE_CXX_COMPILER=${CXX} \
-DCMAKE_Fortran_COMPILER=${FC} \
-DENABLE_TESTS=ON \
-DENABLE_EXAMPLES=ON \
-DENABLE_FORTRAN=ON
- name: CMake configure
if: ${{ matrix.useCMake && matrix.useoneAPI}}
env:
OCCA_CC: ${{ matrix.CC }}
OCCA_CXX: ${{ matrix.CXX }}
run: |
source /opt/intel/oneapi/setvars.sh
export SYCL_ROOT=/opt/intel/oneapi/compiler/latest
cmake -S . -B build \
-DCMAKE_BUILD_TYPE="RelWithDebInfo" \
-DCMAKE_INSTALL_PREFIX=install \
-DCMAKE_C_COMPILER=${CC} \
-DCMAKE_CXX_COMPILER=${CXX} \
-DCMAKE_Fortran_COMPILER=${FC} \
-DENABLE_TESTS=ON \
-DENABLE_EXAMPLES=ON \
-DENABLE_FORTRAN=ON
- name: CMake build
if: ${{ matrix.useCMake && !matrix.useoneAPI}}
run: |
cmake --build build --parallel 16
- name: CMake build
if: ${{ matrix.useCMake && matrix.useoneAPI}}
env:
OCCA_CC: ${{ matrix.CC }}
OCCA_CXX: ${{ matrix.CXX }}
run: |
source /opt/intel/oneapi/setvars.sh
cmake --build build --parallel 16
- name: Compile library
if: ${{ !matrix.useCMake }}
run: make -j 16
- name: Compile tests
if: ${{ !matrix.useCMake }}
run: make -j 16 tests
- name: Run unit tests
if: ${{ !matrix.useCMake }}
run: ./tests/run_tests
- name: Run examples
if: ${{ !matrix.useCMake }}
run: ./tests/run_examples
- name: Run CTests
if: ${{ matrix.useCMake && !matrix.useoneAPI }}
run: |
ctest --test-dir build --progress --output-on-failure --parallel 8 --schedule-random -E "examples_cpp_arrays-opencl|examples_cpp_for_loops-opencl|examples_cpp_generic_inline_kernel-opencl|examples_cpp_shared_memory-opencl|examples_cpp_nonblocking_streams-opencl|examples_cpp_for_loops-dpcpp|examples_cpp_arrays-dpcpp|examples_cpp_generic_inline_kernel-dpcpp|examples_cpp_nonblocking_streams-dpcpp"
- name: Run CTests
if: ${{ matrix.useCMake && matrix.useoneAPI }}
env:
OCCA_CC: ${{ matrix.CC }}
OCCA_CXX: ${{ matrix.CXX }}
OCCA_DPCPP_COMPILER: icpx
run: |
source /opt/intel/oneapi/setvars.sh
export ONEAPI_DEVICE_SELECTOR=*:cpu
ctest --test-dir build --progress --output-on-failure --parallel 8 --schedule-random -E "opencl-*|dpcpp-*"
- name: Upload code coverage
if: ${{ matrix.OCCA_COVERAGE }}
run: bash <(curl --no-buffer -s https://codecov.io/bash) -x "${GCOV}"