Skip to content

Commit 928b75a

Browse files
committed
Fix CI
1 parent ada8378 commit 928b75a

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/check_csdk_build_parameters.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ jobs:
4141
with:
4242
repository: LedgerHQ/app-boilerplate
4343
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
4449
- name: Download C SDK Build Parameters Extractor
4550
uses: actions/download-artifact@v4
4651
with:
@@ -51,12 +56,12 @@ jobs:
5156
./cbpx --app-path c_boilerplate \
5257
--device ${{ matrix.target }}
5358
# 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
5560
if [ $? -ne 0 ]; then
5661
echo "C SDK build parameters CFLAGS do not match for target ${{ matrix.target }}"
5762
exit 1
5863
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
6065
if [ $? -ne 0 ]; then
6166
echo "C SDK build parameters DEFINES do not match for target ${{ matrix.target }}"
6267
exit 1

0 commit comments

Comments
 (0)