1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

Merge pull request #635 from VILLASframework/update-fedora

Update Fedora version 36
This commit is contained in:
Steffen Vogel 2023-01-11 17:00:58 +01:00 committed by GitHub
commit 0a8eebe41f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 4 additions and 13 deletions

View file

@ -126,9 +126,6 @@ test:cppcheck:
test:unit:
stage: test
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG}
variables:
LD_PRELOAD: /usr/lib64/libSegFault.so
SEGFAULT_SIGNALS: all
script:
- mkdir -p build && cd build
- cmake ${CMAKE_OPTS} ..

View file

@ -116,7 +116,7 @@ int villas::kernel::tc::netem_parse(struct rtnl_qdisc **netem, json_t *json)
if (json_delay_distribution) {
if (set_delay_distribution(ne, json_delay_distribution))
throw ConfigError(json_delay_distribution, "Invalid delay distribution in netem config");
throw ConfigError(json_delay_distribution, "node-config-netem-distrobution", "Invalid delay distribution in netem config");
}
if (json_delay_correlation) {

View file

@ -6,7 +6,7 @@
###################################################################################
ARG DISTRO=fedora
ARG FEDORA_VERSION=34
ARG FEDORA_VERSION=36
ARG REF=unknown
FROM ${DISTRO}:${FEDORA_VERSION} AS dev
@ -28,7 +28,7 @@ RUN dnf -y install \
openssh-clients \
rpmdevtools rpm-build \
jq nmap-ncat \
iproute \
iproute iproute-tc \
python-pip \
valgrind gdb gdb-gdbserver \
cppcheck \

View file

@ -5,7 +5,7 @@
# @license Apache 2.0
###################################################################################
FROM fedora:35
FROM fedora:36
RUN dnf -y install \
git \

View file

@ -10,9 +10,6 @@ add_custom_target(run-integration-tests
/bin/bash -o pipefail -c \"
SRCDIR=${PROJECT_SOURCE_DIR}
BUILDDIR=${PROJECT_BINARY_DIR}
LD_PRELOAD=/usr/lib64/libSegFault.so
SEGFAULT_SIGNALS=all
SEGFAULT_SIGNALS='bus abrt'
${PROJECT_SOURCE_DIR}/tools/integration-tests.sh 2>&1 | c++filt\"
USES_TERMINAL
DEPENDS

View file

@ -30,9 +30,6 @@ target_link_libraries(unit-tests PUBLIC
add_custom_target(run-unit-tests
COMMAND
/bin/bash -o pipefail -c \"
LD_PRELOAD=/usr/lib64/libSegFault.so
SEGFAULT_SIGNALS=all
SEGFAULT_SIGNALS='bus abrt'
$<TARGET_FILE:unit-tests> 2>&1 | c++filt\"
DEPENDS
unit-tests