Skip to content

Commit 3b04a9c

Browse files
casarolimidokura-xavi92
authored andcommitted
Edge Virtualization Platform v1.48.1
1 parent 352a8bd commit 3b04a9c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
name: Is builder necessary?
4141
runs-on: ubuntu-22.04
4242
outputs:
43-
build: ${{ steps.changed-files.outputs.all_changed_and_modified_files != '' }}
43+
build: ${{ steps.changed-files.outputs.all_changed_and_modified_files != '' || github.event_name == 'workflow_dispatch' }}
4444
builder-tag: ${{ steps.builder-tag.outputs.tag }}
4545
steps:
4646
- uses: actions/checkout@v4

scripts/build/tool/ccov.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ CI_FILTER=\
1414

1515
coverage/cov.lcov: FORCE
1616
trap "rm -f $$$$.tmp" EXIT INT TERM;\
17-
find . -name '*.profraw' |\
17+
find test/ -name '*.profraw' |\
1818
xargs llvm-profdata merge -o coverage/cov.profdata -sparse
19-
find . -name '*.elf' |\
19+
find test/ -name '*.elf' |\
2020
xargs llvm-cov export --instr-profile coverage/cov.profdata --format lcov > $$$$.tmp &&\
2121
mv $$$$.tmp $@
2222

2323
coverage/filtered.lcov: coverage/cov.lcov
2424
trap "rm -f $$$$.tmp" EXIT INT TERM;\
25-
find . -name '*.elf' |\
25+
find test/ -name '*.elf' |\
2626
xargs llvm-cov export --instr-profile coverage/cov.profdata --format lcov \
2727
--sources $(CI_FILTER) \
2828
--object > $$$$.tmp &&\

scripts/rules.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
all:
88

99
# Macros related to the version of the agent
10-
VERSION = 1.48.0
10+
VERSION = 1.48.1
1111
SDK_VERSION = 1.0.0
1212

1313
# Default value for configuration macros

version.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
VERSION = 1.48.0
5+
VERSION = 1.48.1
66
COMMIT_HASH = $(shell git describe --always --abbrev=0 --dirty --match "NOT A TAG")
77

88
define VERSION_BODY

0 commit comments

Comments
 (0)