Skip to content

Commit 8178142

Browse files
Fix review findings: 2022->2023, typo in steps names
1 parent 6e98d92 commit 8178142

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Diff for: .github/actions/build-container-image/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Contributors to the Eclipse Foundation
1+
# Copyright 2023 Contributors to the Eclipse Foundation
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

Diff for: .github/actions/build-native-binary/action.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Contributors to the Eclipse Foundation
1+
# Copyright 2023 Contributors to the Eclipse Foundation
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -114,14 +114,14 @@ runs:
114114
ldd TestSelfUpdateAgent
115115
LD_LIBRARY_PATH=../lib ./TestSelfUpdateAgent > ../../unit_tests_report_arm64.txt
116116
117-
- name: Collect code coverage for amd64
117+
- name: Collect code-coverage for amd64
118118
if: ${{ inputs.arch == 'amd64' }}
119119
run: |
120120
cd dist_${{ inputs.arch }}_codecov/utest
121121
./TestSelfUpdateAgent
122122
shell: bash
123123

124-
- name: Generate code coverage report
124+
- name: Generate code-coverage report
125125
if: ${{ (inputs.arch == 'amd64') && (success() || failure()) }}
126126
run: |
127127
cd dist_${{ inputs.arch }}_codecov/utest
@@ -131,7 +131,7 @@ runs:
131131
gcovr --root ../.. --txt --output report/coverage.txt -e ../../3rdparty -e ../../utest -e ../../src/main.cpp
132132
tar -czvf ../../code-coverage.tar.gz report
133133
134-
echo -e "### Code Coverage Summary for" ${{ inputs.arch }} "\n" >> report.md
134+
echo -e "### Code-coverage summary for" ${{ inputs.arch }} "\n" >> report.md
135135
echo -e "\`\`\`" >> report.md
136136
cat report/coverage.txt >> report.md
137137
echo -e "\n\`\`\`\n" >> report.md
@@ -144,7 +144,7 @@ runs:
144144
run: |
145145
cd dist_${{ inputs.arch }}/utest
146146
147-
echo -e "### Unit Tests Results for" ${{ inputs.arch }} "\n" >> report.md
147+
echo -e "### Unit tests results for" ${{ inputs.arch }} "\n" >> report.md
148148
echo -e "\`\`\`" >> report.md
149149
cat ../../unit_tests_report_${{ inputs.arch }}.txt >> report.md
150150
echo -e "\n\`\`\`\n" >> report.md

Diff for: .github/workflows/main.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Contributors to the Eclipse Foundation
1+
# Copyright 2023 Contributors to the Eclipse Foundation
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -98,7 +98,7 @@ jobs:
9898
with:
9999
path: self-update-agent-${{ matrix.arch }}-build-${{ github.run_number }}.tar.gz
100100

101-
- name: Upload code coverage results to workspace
101+
- name: Upload code-coverage results to workspace
102102
if: ${{ matrix.arch == 'amd64' }}
103103
uses: actions/upload-artifact@v3
104104
with:

Diff for: .github/workflows/main_developer.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Contributors to the Eclipse Foundation
1+
# Copyright 2023 Contributors to the Eclipse Foundation
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

Diff for: .github/workflows/ocaas.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Contributors to the Eclipse Foundation
1+
# Copyright 2023 Contributors to the Eclipse Foundation
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

Diff for: CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
88
set(CMAKE_INSTALL_RPATH ../lib)
99

1010
option(SUA_BUILD_TESTS "Build unit tests with code-coverage report enabled" OFF)
11-
option(SUA_MEASURE_CODE_COVERAGE "Measure code coverage" OFF)
11+
option(SUA_MEASURE_CODE_COVERAGE "Measure code-coverage" OFF)
1212

1313
include(cmake/dependencies.cmake)
1414

0 commit comments

Comments
 (0)