-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
85 lines (45 loc) · 1.47 KB
/
.appveyor.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
version: 1.0.{build}
image:
- Ubuntu2004
build: off
skip_commits:
message: /\[unsurveilled\]/
init:
#cache:
##- boringssl -> appveyor-linux.yml # we define the commit in here
install:
- sh: >-
if [[ -e boringssl/CMakeLists.txt ]] ; then
echo cached
else
echo "About to download OpenMPI 4"
wget https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.2.tar.gz
tar xvzf openmpi-4.1.2.tar.gz
cd openmpi-4.1.2
./configure |& tee config.out
make -j 4 |& tee make.out
make install |& tee install.out
cd ..
#apt-get install --reinstall openmpi-bin libopenmpi-dev
echo "About to download Boost 1.77.0"
wget https://boostorg.jfrog.io/artifactory/main/release/1.77.0/source/boost_1_77_0.tar.gz
tar zxvf boost_1_77_0.tar.gz
cd boost_1_77_0
./bootstrap.sh
./b2 install
cd ..
echo "About to build the project :-)"
wget https://github.com/GastonMazzei/NEDISS/archive/refs/heads/main.zip
unzip main.zip
cd NEDISS-main
cmake -D ENABLE_COVERAGE:BOOL=TRUE -S . -B build
cmake --build ./build -- -j4
cd ..
echo "Ended succesfully :-)"
fi
#git submodule init
#git submodule update --checkout --force --recursive
#cmake -DBORINGSSL_DIR=$PWD/boringssl .
#make
#test_script:
#- sh: make test