Files
Last update 1 year 4 months
by
Kristóf Kovács
Files | |
---|---|
Arduino_Pedalbox | |
CAD | |
ECAD | |
.gitignore | |
README.md | |
azure_pipeline.yml | |
build_UML.py | |
github_wiki.py | |
system_design.mdj |
azure_pipeline.ymltrigger: - feat/* - fix/* - main pool: Default jobs: - job: displayName: 'Run host tests' variables: returnCode: 0 steps: - script: | cd Arduino_Pedalbox source ~/.platformio/penv/bin/activate pio test -e host --junit-output-path . returnCode=$? sed -i s/utf8/UTF-8/ pio-test-report-*.xml if [ $returnCode -eq 1 ]; then echo "Build failed" exit $returnCode elif [ $returnCode -eq 2 ]; then echo "Tests failed" exit $returnCode fi displayName: 'Run the tests of host environment' - task: PublishTestResults@2 inputs: testResultsFormat: 'JUnit' testResultsFiles: '**/pio-test-report-*.xml' condition: always() - job: displayName: 'Run target tests' variables: returnCode: 0 steps: - script: | cd Arduino_Pedalbox source ~/.platformio/penv/bin/activate pio test -e leonardo --junit-output-path . returnCode=$? sed -i s/utf8/UTF-8/ pio-test-report-*.xml if [ $returnCode -eq 1 ]; then echo "Build failed" exit $returnCode elif [ $returnCode -eq 2 ]; then echo "Tests failed" exit $returnCode fi displayName: 'Run the tests of leonardo environment' - task: PublishTestResults@2 inputs: testResultsFormat: 'JUnit' testResultsFiles: '**/pio-test-report-*.xml' condition: always()