From cc8e4487136d03a9c828a42a652b98a4f5c6b914 Mon Sep 17 00:00:00 2001 From: Marco Casaroli Date: Mon, 26 May 2025 09:02:12 +0200 Subject: [PATCH] Edge Virtualization Platform v1.48.1 --- .github/workflows/builder.yml | 2 +- scripts/build/tool/ccov.mk | 6 +++--- scripts/rules.mk | 2 +- version.mk | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 9633e5bc..21af5a8d 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -40,7 +40,7 @@ jobs: name: Is builder necessary? runs-on: ubuntu-22.04 outputs: - build: ${{ steps.changed-files.outputs.all_changed_and_modified_files != '' }} + build: ${{ steps.changed-files.outputs.all_changed_and_modified_files != '' || github.event_name == 'workflow_dispatch' }} builder-tag: ${{ steps.builder-tag.outputs.tag }} steps: - uses: actions/checkout@v4 diff --git a/scripts/build/tool/ccov.mk b/scripts/build/tool/ccov.mk index 487f776f..06563ec7 100644 --- a/scripts/build/tool/ccov.mk +++ b/scripts/build/tool/ccov.mk @@ -14,15 +14,15 @@ CI_FILTER=\ coverage/cov.lcov: FORCE trap "rm -f $$$$.tmp" EXIT INT TERM;\ - find . -name '*.profraw' |\ + find test/ -name '*.profraw' |\ xargs llvm-profdata merge -o coverage/cov.profdata -sparse - find . -name '*.elf' |\ + find test/ -name '*.elf' |\ xargs llvm-cov export --instr-profile coverage/cov.profdata --format lcov > $$$$.tmp &&\ mv $$$$.tmp $@ coverage/filtered.lcov: coverage/cov.lcov trap "rm -f $$$$.tmp" EXIT INT TERM;\ - find . -name '*.elf' |\ + find test/ -name '*.elf' |\ xargs llvm-cov export --instr-profile coverage/cov.profdata --format lcov \ --sources $(CI_FILTER) \ --object > $$$$.tmp &&\ diff --git a/scripts/rules.mk b/scripts/rules.mk index 827f5516..2bbd51eb 100644 --- a/scripts/rules.mk +++ b/scripts/rules.mk @@ -7,7 +7,7 @@ all: # Macros related to the version of the agent -VERSION = 1.48.0 +VERSION = 1.48.1 SDK_VERSION = 1.0.0 # Default value for configuration macros diff --git a/version.mk b/version.mk index 752263c3..0858b379 100644 --- a/version.mk +++ b/version.mk @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 -VERSION = 1.48.0 +VERSION = 1.48.1 COMMIT_HASH = $(shell git describe --always --abbrev=0 --dirty --match "NOT A TAG") define VERSION_BODY