File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ CI_FILTER=\
1414
1515coverage/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
2323coverage/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 && \
Original file line number Diff line number Diff line change 77all :
88
99# Macros related to the version of the agent
10- VERSION = 1.48.0
10+ VERSION = 1.48.1
1111SDK_VERSION = 1.0.0
1212
1313# Default value for configuration macros
Original file line number Diff line number Diff line change 22#
33# SPDX-License-Identifier: Apache-2.0
44
5- VERSION = 1.48.0
5+ VERSION = 1.48.1
66COMMIT_HASH = $(shell git describe --always --abbrev=0 --dirty --match "NOT A TAG")
77
88define VERSION_BODY
You can’t perform that action at this time.
0 commit comments