@@ -24,17 +24,22 @@ jobs:
24
24
git config --global user.name ${{ github.actor }}
25
25
git config --global user.email ${{ github.actor }}@users.noreply.github.com
26
26
- name : create a new branch that references commit id
27
- run : git checkout -b ${{ github.event.inputs.version_number }} ${{ github.event.inputs.commit_id }}
27
+ env :
28
+ VERSION_NUMBER : ${{ github.event.inputs.version_number }}
29
+ COMMIT_ID : ${{ github.event.inputs.commit_id }}
30
+ run : git checkout -b "$VERSION_NUMBER" "$COMMIT_ID"
28
31
- name : Generate SBOM
29
32
uses : FreeRTOS/CI-CD-Github-Actions/sbom-generator@main
30
33
with :
31
34
repo_path : ./
32
35
source_path : ./source
33
36
- name : commit SBOM file
37
+ env :
38
+ VERSION_NUMBER : ${{ github.event.inputs.version_number }}
34
39
run : |
35
40
git add .
36
41
git commit -m 'Update SBOM'
37
- git push -u origin ${{ github.event.inputs.version_number }}
42
+ git push -u origin "$VERSION_NUMBER"
38
43
- name : Tag Commit and Push to remote
39
44
env :
40
45
VERSION_NUMBER : ${{ github.event.inputs.version_number }}
68
73
cd coreJSON
69
74
git submodule update --init --checkout --recursive
70
75
- name : Create ZIP
76
+ env :
77
+ VERSION_NUMBER : ${{ github.event.inputs.version_number }}
71
78
run : |
72
- zip -r coreJSON-${{ github.event.inputs.version_number }} .zip coreJSON -x "*.git*"
79
+ zip -r coreJSON-"$VERSION_NUMBER" .zip coreJSON -x "*.git*"
73
80
ls ./
74
81
- name : Validate created ZIP
75
82
env :
83
90
diff -r -x "*.git*" coreJSON-"$VERSION_NUMBER"/coreJSON/ ../coreJSON/
84
91
cd ../
85
92
- name : Build
93
+ env :
94
+ VERSION_NUMBER : ${{ github.event.inputs.version_number }}
86
95
run : |
87
- cd zip-check/coreJSON-${{ github.event.inputs.version_number }} /coreJSON
96
+ cd zip-check/coreJSON-"$VERSION_NUMBER" /coreJSON
88
97
sudo apt-get install -y lcov
89
98
cmake -S test -B build/ \
90
99
-G "Unix Makefiles" \
@@ -93,8 +102,10 @@ jobs:
93
102
-DCMAKE_C_FLAGS='--coverage -Wall -Wextra -Werror'
94
103
make -C build/ all
95
104
- name : Test
105
+ env :
106
+ VERSION_NUMBER : ${{ github.event.inputs.version_number }}
96
107
run : |
97
- cd zip-check/coreJSON-${{ github.event.inputs.version_number }} /coreJSON/build/
108
+ cd zip-check/coreJSON-"$VERSION_NUMBER" /coreJSON/build/
98
109
ctest -E system --output-on-failure
99
110
cd ..
100
111
- name : Create artifact of ZIP
0 commit comments