Skip to content

code cleaning: remove unused NED parameters #14

code cleaning: remove unused NED parameters

code cleaning: remove unused NED parameters #14

name: "Run fingerprint tests"
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
workflow_dispatch:
jobs:
fingerprint-tests:
runs-on: ubuntu-latest
strategy:
matrix:
mode: ["debug", "release"]
fail-fast: false
steps:
- name: Checking out OMNeT++
uses: actions/checkout@v4
with:
repository: omnetpp/omnetpp
path: omnetpp
# Some (yet) unreleased changes after 6.0.3 are
# needed for the fingerprints to match.
ref: omnetpp-6.x
- name: Checking out INET
uses: actions/checkout@v4
with:
repository: inet-framework/inet
path: inet4.5
ref: v4.5.2
- name: Checking out Simu5G
uses: actions/checkout@v4
with:
path: Simu5G
- name: Creating ccache directory
run: mkdir -p /home/runner/work/ccache
- name: Restoring ccache cache
uses: actions/cache@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
# See: https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache
restore-keys: native-${{ matrix.mode }}-ccache
- name: Build and test
env:
MODE: ${{ matrix.mode }}
run: |
# This entire thing is a single script to make persisting
# the configured environment variables across steps easier.
# The log output is grouped at least, for better readability.
echo "::group::Installing dependency packages"
sudo apt update
sudo apt install -y --no-install-recommends git wget curl ca-certificates make \
ccache clang lld gdb bison flex perl doxygen graphviz libxml2-dev zlib1g-dev python3
echo "::endgroup::"
echo "::group::Configuring ccache"
export PATH=/usr/lib/ccache:$PATH
export CCACHE_DIR=/home/runner/work/ccache
echo "::endgroup::"
echo "::group::Running OMNeT++ setenv"
cd $GITHUB_WORKSPACE/omnetpp
cp configure.user.dist configure.user
. setenv -f
echo "::endgroup::"
echo "::group::Configuring OMNeT++"
./configure WITH_LIBXML=yes WITH_QTENV=no WITH_OSG=no WITH_OSGEARTH=no
echo "::endgroup::"
echo "::group::Building OMNeT++"
make MODE=$MODE -j $(nproc) base
echo "::endgroup::"
echo "::group::Running INET setenv"
cd $GITHUB_WORKSPACE/inet4.5
. setenv -f
echo "::endgroup::"
echo "::group::Making INET Makefiles"
make makefiles
echo "::endgroup::"
echo "::group::Building INET"
make MODE=$MODE -j $(nproc)
echo "::endgroup::"
echo "::group::Running Simu5G setenv"
cd $GITHUB_WORKSPACE/Simu5G
. setenv -f
echo "::endgroup::"
echo "::group::Making Simu5G Makefiles"
make makefiles
echo "::endgroup::"
echo "::group::Building Simu5G"
make MODE=$MODE -j $(nproc)
echo "::endgroup::"
echo "::group::Running fingerprint tests"
cd tests/fingerprint
if [ "$MODE" = "debug" ]; then
./fingerprints -d
else
./fingerprints
fi
echo "::endgroup::"