Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions scripts/build/tool/ccov.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&\
Expand Down
2 changes: 1 addition & 1 deletion scripts/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion version.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down