-
Notifications
You must be signed in to change notification settings - Fork 21
85 lines (76 loc) · 3.93 KB
/
develop.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
##
# @file This file is part of EDGE.
#
# @author Alexander Breuer (alex.breuer AT uni-jena.de)
#
# @section LICENSE
# Copyright (c) 2020, Friedrich Schiller University Jena
# Copyright (c) 2019, Alexander Breuer
# Copyright (c) 2016-2018, Regents of the University of California
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# @section DESCRIPTION
# Continuous integration via GitHub Actions.
##
name: EDGE
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
schedule:
- cron: 0 0 * * *
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Submodules
run: |
git submodule init
git submodule update
- name: Tools
run: |
./tools/build/install_tools.sh
wget --user-agent="none" https://software.intel.com/content/dam/develop/external/us/en/documents/sde-external-8.56.0-2020-07-05-lin.tar.bz2 -O sde.tar.bz2
mkdir sde
tar --strip-components=1 -xjf sde.tar.bz2 -C sde
sudo ln -s $(pwd)/sde/sde64 /usr/local/bin/sde64
- name: Dependencies
run: |
sudo ./tools/build/deps/zlib.sh -o /usr/local -j ${EDGE_N_BUILD_PROCS}
sudo ./tools/build/deps/hdf5.sh -z /usr/local -o /usr/local -j ${EDGE_N_BUILD_PROCS}
sudo ./tools/build/deps/gmsh.sh -p $(pwd)/tools/gmsh -o /usr/local -j ${EDGE_N_BUILD_PROCS}
sudo ./tools/build/deps/libxsmm.sh -i $(pwd)/submodules/libxsmm -o /usr/local -j ${EDGE_N_BUILD_PROCS}
sudo ./tools/build/deps/metis.sh -o /usr/local -p $(pwd)/tools/build/deps/metis.patch -j ${EDGE_N_BUILD_PROCS}
cd tools/edge_v; sudo scons install_dir=/usr/local -j ${EDGE_N_BUILD_PROCS}; cd ../..
env:
EDGE_N_BUILD_PROCS: 4
- name: Assets
run: |
git lfs clone --exclude=* https://opt.dial3343.org/3343/edge_opt.git
cd edge_opt
git log | head -n 1
git lfs fetch -I cont/advection; git lfs fetch -I cont/seismic; git lfs fetch -I cont/swe
git lfs checkout cont/advection cont/seismic cont/swe
cd ..
- name: Elastics
run: |
# generate mesh
gmsh -3 edge_opt/cont/seismic/plane_waves/tet4/gmsh_outflow.geo -o gmsh_outflow.msh
edge_v -x edge_opt/cont/seismic/plane_waves/tet4/edge_v_outflow.xml
# tet4, unstructured order=2, cfr=2
scons order=2 cfr=2 -j ${EDGE_N_BUILD_PROCS}
./build/edge -x edge_opt/cont/seismic/plane_waves/tet4/edge_outflow.xml
env:
EDGE_N_BUILD_PROCS: 4