-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (53 loc) · 1.73 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
name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-24.04 ]
env:
GCC_V: 14
NO_COLOR: 1
steps:
- name: Checkout Source Code
uses: actions/checkout@v3
with:
submodules: recursive
- name: List Packages
if: contains(matrix.os, 'ubuntu')
run: |
sudo apt list --installed
- name: Install Packages
if: contains(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y gcc-${GCC_V} gfortran-${GCC_V} make pkg-config
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${GCC_V} 100 \
--slave /usr/bin/gfortran gfortran /usr/bin/gfortran-${GCC_V}
sudo apt-get install -y --no-install-recommends libblas-dev liblapack-dev \
curl libcurl4t64 libcurl4-openssl-dev libfcgi-bin libfcgi-dev gnuplot-nox \
libhdf5-103-1t64 libhdf5-dev lua5.4 liblua5.4 liblua5.4-dev libmodbus5 \
libmodbus-dev libpcre2-8-0 libpcre2-dev sqlite3 libsqlite3-0 libsqlite3-dev \
zlib1g zlib1g-dev libzstd1 libzstd-dev
- name: Configure System
if: contains(matrix.os, 'ubuntu')
run: |
sudo sysctl fs.mqueue.msg_max=100
sudo sysctl fs.mqueue.msgsize_max=16384
alias gnuplot="gnuplot-nox"
gnuplot --version
- name: Build and Test
if: contains(matrix.os, 'ubuntu')
run: |
which gfortran
gfortran --version
which gcc
gcc --version
sqlite3 --version
make build OS=linux PREFIX=/usr/local RELEASE="-g -O0 -Wall -fmax-errors=1"
sh runtests.sh