Skip to content

Commit

Permalink
scripts: fix paths for files moved to framework
Browse files Browse the repository at this point in the history
Signed-off-by: Valerio Setti <[email protected]>
  • Loading branch information
valeriosetti committed Dec 6, 2024
1 parent 47f4fd8 commit 89e652a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ build:
python: "3.9"
jobs:
pre_build:
- ./scripts/apidoc_full.sh
- ./framework/scripts/apidoc_full.sh
- breathe-apidoc -o docs/api apidoc/xml
post_build:
- |
Expand Down
14 changes: 7 additions & 7 deletions tests/scripts/components-basic-checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

component_check_recursion () {
msg "Check: recursion.pl" # < 1s
tests/scripts/recursion.pl library/*.c
tests/scripts/recursion.pl ${PSA_CORE_PATH}/*.c
tests/scripts/recursion.pl ${BUILTIN_SRC_PATH}/*.c
./framework/tests/scripts/recursion.pl library/*.c
./framework/tests/scripts/recursion.pl ${PSA_CORE_PATH}/*.c
./framework/tests/scripts/recursion.pl ${BUILTIN_SRC_PATH}/*.c
}

component_check_generated_files () {
Expand All @@ -38,7 +38,7 @@ component_check_generated_files () {

component_check_doxy_blocks () {
msg "Check: doxygen markup outside doxygen blocks" # < 1s
tests/scripts/check-doxy-blocks.pl
./framework/tests/scripts/check-doxy-blocks.pl
}

component_check_files () {
Expand All @@ -49,7 +49,7 @@ component_check_files () {
component_check_changelog () {
msg "Check: changelog entries" # < 1s
rm -f ChangeLog.new
scripts/assemble_changelog.py -o ChangeLog.new
./framework/scripts/assemble_changelog.py -o ChangeLog.new
if [ -e ChangeLog.new ]; then
# Show the diff for information. It isn't an error if the diff is
# non-empty.
Expand Down Expand Up @@ -135,7 +135,7 @@ component_check_test_dependencies () {

component_check_doxygen_warnings () {
msg "Check: doxygen warnings (builds the documentation)" # ~ 3s
tests/scripts/doxygen.sh
./framework/tests/scripts/doxygen.sh
}

component_check_code_style () {
Expand All @@ -152,7 +152,7 @@ support_check_code_style () {

component_check_python_files () {
msg "Lint: Python scripts"
tests/scripts/check-python-files.sh
./framework/tests/scripts/check-python-files.sh
}

component_check_test_helpers () {
Expand Down

0 comments on commit 89e652a

Please sign in to comment.