-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (45 loc) · 1.32 KB
/
main.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
name: Build|Test|Run
on: [push, pull_request]
jobs:
linux-gcc-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: 'recursive'
- name: Build Kokkos with OpenMP
shell: bash
run: |
cd 3rdparty/kokkos
mkdir build
cd build
cmake .. \
-DCMAKE_CXX_COMPILER=g++ \
-DCMAKE_C_COMPILER=gcc \
-DKokkos_ENABLE_OPENMP=ON
make -j4
cd ../../..
- name: Build FDTD with GCC
shell: bash
run: |
export CMAKE_BUILD_PARALLEL_LEVEL=4
mkdir build
cmake \
-DCMAKE_C_COMPILER=gcc \
-DCMAKE_CXX_COMPILER=g++ \
-B ${PWD}/build
cmake --build ${PWD}/build --config Release
find ${PWD}/build -name test_FDTD_method
- name: Run tests with GCC
shell: bash
run: |
${PWD}/build/test/test_FDTD_method --gtest_repeat=2 --gtest_break_on_failure
- name: Run kokkos_sample
shell: bash
run: |
find ${PWD}/build -name kokkos_sample
${PWD}/build/PlotScript/src/Release/kokkos_sample
- name: Run sample
shell: bash
run: |
${PWD}/build/PlotScript/src/Release/sample