mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2025-12-10 07:44:41 +01:00
Fix pipeline
This commit is contained in:
parent
fb3c8833f3
commit
e37b74e067
2 changed files with 13 additions and 0 deletions
|
|
@ -11,3 +11,7 @@ apt install -y jq uuid-dev libmxml-dev >/dev/null 2>&1
|
|||
|
||||
echo "Installing bbfdmd"
|
||||
install_bbfdmd
|
||||
|
||||
#install WiFi Data Model as Plugin
|
||||
echo "Installing wifidmd as plugin"
|
||||
install_wifidmd_as_plugin
|
||||
|
|
@ -144,6 +144,15 @@ function install_bbfdmd()
|
|||
exec_cmd ./gitlab-ci/setup.sh install
|
||||
}
|
||||
|
||||
function install_wifidmd_as_plugin()
|
||||
{
|
||||
exec_cmd git clone https://dev.iopsys.eu/bbf/wifidmd.git /opt/dev/wifidmd
|
||||
|
||||
exec_cmd make -C /opt/dev/wifidmd/src/ clean && make -C /opt/dev/wifidmd/src/
|
||||
exec_cmd cp -f /opt/dev/wifidmd/src/libwifi.so /usr/share/bbfdm/plugins/
|
||||
exec_cmd cp -f /opt/dev/wifidmd/src/libdataelements.so /usr/share/bbfdm/plugins/
|
||||
}
|
||||
|
||||
function check_valgrind_xml() {
|
||||
echo "Checking memory leaks..."
|
||||
cp /tmp/memory-report.xml memory-report.xml
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue