| 32692b31 | 25-Oct-2022 |
Jerome Forissier <jerome.forissier@linaro.org> |
ci: code_style: run pycodestyle even if checkpatch has failed
When checkpatch reports issues, it returns an error status which make the code_style job fail as expected. However, by default when a jo
ci: code_style: run pycodestyle even if checkpatch has failed
When checkpatch reports issues, it returns an error status which make the code_style job fail as expected. However, by default when a job step fails the subsequent ones are not executed. Therefore, pycodestyle is skipped which is bad because we sometimes want to ignore some checkpatch errors and we still want to detect Python issues.
This problem is fixed by adding a condition to the "Run pycodestyle" step.
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 70a5b401 | 29-Sep-2022 |
Jerome Forissier <jerome.forissier@linaro.org> |
ci: QEMUv8_check: also run tests with Cryptographic Extension enabled
Adds a line to build and run regression tests with CFG_CRYPTO_WITH_CE=y. Many Armv8 CPUs support this extension so it is very co
ci: QEMUv8_check: also run tests with Cryptographic Extension enabled
Adds a line to build and run regression tests with CFG_CRYPTO_WITH_CE=y. Many Armv8 CPUs support this extension so it is very commonly used and deserves to be tested here.
While we're at it, set CFG_TEE_CORE_LOG_LEVEL=0 at the beginning to avoid duplication.
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 7bf5e91c | 30-Aug-2022 |
Sahil Malhotra <sahil.malhotra@nxp.com> |
core: plat-ls: remove OP-TEE support for LS1021A-QDS platform
LS1021A-QDS does not support OP-TEE anymore, removing its support.
Signed-off-by: Sahil Malhotra <sahil.malhotra@nxp.com> Acked-by: Jer
core: plat-ls: remove OP-TEE support for LS1021A-QDS platform
LS1021A-QDS does not support OP-TEE anymore, removing its support.
Signed-off-by: Sahil Malhotra <sahil.malhotra@nxp.com> Acked-by: Jerome Forissier <jerome.forissier@linaro.org>
show more ...
|
| 13f65d28 | 27-Jul-2022 |
Jerome Forissier <jerome.forissier@linaro.org> |
ci: cancel obsolete workflows
When the CI workflow is triggered, we usually don't want previous jobs related to the same branch or pull request to keep running; it is just wasteful of resources. The
ci: cancel obsolete workflows
When the CI workflow is triggered, we usually don't want previous jobs related to the same branch or pull request to keep running; it is just wasteful of resources. Therefore add a special workflow to deal with the situation [1].
An exception is made for CI workflows started by updates to the master branch so that several PR merged in a row do not cancel previous CI runs started on master.
Link: [1] https://github.com/marketplace/actions/cancel-workflow-action#advanced-pull-requests-from-forks Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 3957cdc4 | 26-Jul-2022 |
Jerome Forissier <jerome.forissier@linaro.org> |
ci: code_style: clone repository with full history
The code_style job runs checkpatch, which checks if commit references found in commit descriptions are valid or not. In order for this to work, the
ci: code_style: clone repository with full history
The code_style job runs checkpatch, which checks if commit references found in commit descriptions are valid or not. In order for this to work, the Git repo must contain the full history otherwise some IDs might be reported as unknown. For example [1]:
WARNING: Unknown commit id '60801696667d', maybe rebased or not pulled? #7: - Commit 60801696667d ("plat: arm: refactor GIC initialization")
Link: [1] https://github.com/OP-TEE/optee_os/runs/7529955940?check_suite_focus=true#step:5:35 Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| cd1c6d65 | 03-Jul-2020 |
Jerome Forissier <jerome@forissier.org> |
github: fix error in workflow file
GitHub reports [1]:
The workflow is not valid. .github/workflows/stales.yml (Line: 2, Col: 1): Unexpected value 'description'
This commit removes the descript
github: fix error in workflow file
GitHub reports [1]:
The workflow is not valid. .github/workflows/stales.yml (Line: 2, Col: 1): Unexpected value 'description'
This commit removes the description: line to fix the issue and moves additional text to the name: line.
Link: [1] https://github.com/OP-TEE/optee_os/actions/runs/156017617 Fixes: 50bbda3dd3b2 ("github: add a new actions/workflow file") Signed-off-by: Jerome Forissier <jerome@forissier.org> Acked-by: Etienne Carriere <etienne.carriere@linaro.org> Reviewed-by: Joakim Bech <joakim.bech@linaro.org>
show more ...
|