File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 41
41
with :
42
42
repository : LedgerHQ/app-boilerplate
43
43
path : c_boilerplate
44
+ - name : Checkout C SDK Build Parameters Extractor
45
+ uses : actions/checkout@v4
46
+ with :
47
+ repository : LedgerHQ/csdk_build_parameters_extractor
48
+ path : c_sdk_build_params
44
49
- name : Download C SDK Build Parameters Extractor
45
50
uses : actions/download-artifact@v4
46
51
with :
@@ -51,12 +56,12 @@ jobs:
51
56
./cbpx --app-path c_boilerplate \
52
57
--device ${{ matrix.target }}
53
58
# Compare output with matching file
54
- diff c_sdk_build_${{ matrix.target }}.cflags c_sdk_build_${{ matrix.target }}_ref.cflags
59
+ diff c_sdk_build_${{ matrix.target }}.cflags c_sdk_build_params/ c_sdk_build_${{ matrix.target }}_ref.cflags
55
60
if [ $? -ne 0 ]; then
56
61
echo "C SDK build parameters CFLAGS do not match for target ${{ matrix.target }}"
57
62
exit 1
58
63
fi
59
- diff c_sdk_build_${{ matrix.target }}.defines c_sdk_build_${{ matrix.target }}_ref.defines
64
+ diff c_sdk_build_${{ matrix.target }}.defines c_sdk_build_params/ c_sdk_build_${{ matrix.target }}_ref.defines
60
65
if [ $? -ne 0 ]; then
61
66
echo "C SDK build parameters DEFINES do not match for target ${{ matrix.target }}"
62
67
exit 1
You can’t perform that action at this time.
0 commit comments