-
Notifications
You must be signed in to change notification settings - Fork 71
178 lines (176 loc) · 5.79 KB
/
build_conduit_gcc.yml
File metadata and controls
178 lines (176 loc) · 5.79 KB
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
name: build_conduit_gcc
on:
pull_request:
branches: [ develop ]
jobs:
build_basic:
name: Ubuntu GCC
runs-on: ubuntu-24.04
env:
CC: gcc
CXX: g++
FC: gfortran
steps:
- name: Install System Deps
run: |
sudo apt-get update
sudo env DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata
sudo apt-get install -y binutils \
gcc \
g++ \
gfortran \
python3 \
python3-dev \
python3-venv \
perl \
git \
git-lfs \
curl \
wget \
tar \
unzip \
build-essential \
libncurses-dev \
libssl-dev \
libblas-dev \
liblapack-dev \
zlib1g-dev \
libgdbm-dev \
libreadline-dev \
libsqlite3-dev \
libbz2-dev \
openmpi-bin \
openmpi-common \
libopenmpi-dev \
cmake
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Env Info
run: |
echo "**** Env Info"
cmake --version
gcc --version
which mpicc
- name: Build TPLs
run: |
env enable_mpi=ON \
enable_fortran=ON \
enable_tests=OFF \
enable_verbose=OFF \
build_caliper=true \
build_conduit=false \
build_jobs=2 \
./scripts/build_conduit/build_conduit.sh
- name: Configure Conduit
run: |
echo "**** Configuring Conduit"
cmake -S src -B build -C conduit-config.cmake -DCMAKE_INSTALL_PREFIX=install
- name: Build Conduit
run: |
echo "**** Building Conduit"
cmake --build build -j2
- name: Run Conduit Unit Tests
run: |
echo "**** Conduit Unit Tests"
ctest --test-dir build --output-on-failure -V
- name: Install Conduit
run: |
echo "**** Installing Conduit"
cmake --install build
- name: Check Install
run: |
export CC=/usr/bin/mpicc
export CXX=/usr/bin/mpicxx
cd install/examples/conduit/using-with-cmake-mpi
cmake -S . -B build
cmake --build build --verbose -j2
mpiexec -n 2 ./build/conduit_mpi_example
build_basic_pyvenv:
name: Ubuntu GCC with Python VENV
runs-on: ubuntu-24.04
env:
CC: gcc
CXX: g++
FC: gfortran
steps:
- name: Install System Deps
run: |
sudo apt-get update
sudo env DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata
sudo apt-get install -y binutils \
gcc \
g++ \
gfortran \
python3 \
python3-dev \
python3-venv \
perl \
git \
git-lfs \
curl \
wget \
tar \
unzip \
build-essential \
libncurses-dev \
libssl-dev \
libblas-dev \
liblapack-dev \
zlib1g-dev \
libgdbm-dev \
libreadline-dev \
libsqlite3-dev \
libbz2-dev \
openmpi-bin \
openmpi-common \
libopenmpi-dev \
cmake
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Env Info
run: |
echo "**** Env Info"
cmake --version
gcc --version
which mpicc
- name: Build TPLs
run: |
env enable_mpi=ON \
enable_fortran=ON \
enable_tests=OFF \
enable_verbose=OFF \
build_conduit=false \
enable_python=ON \
build_pyvenv=true \
build_jobs=2 \
./scripts/build_conduit/build_conduit.sh
- name: Configure Conduit
run: |
echo "**** Configuring Conduit"
cmake -S src -B build -C conduit-config.cmake -DCMAKE_INSTALL_PREFIX=install
- name: Build Conduit
run: |
echo "**** Building Conduit"
cmake --build build -j2
- name: Run Conduit Unit Tests
run: |
echo "**** Conduit Unit Tests"
export CTEST_OUTPUT_ON_FAILURE=1
ctest --test-dir build
- name: Install Conduit
run: |
echo "**** Installing Conduit"
cmake --install build
- name: Check Install
run: |
echo "**** Checking Conduit using-with-cmake-mpi example"
export CC=/usr/bin/mpicc
export CXX=/usr/bin/mpicxx
cd install/examples/conduit/using-with-cmake-mpi
cmake -S . -B build
cmake --build build --verbose -j2
mpiexec -n 2 ./build/conduit_mpi_example