1# Azure RTOS CI/CD (old version) 2 3**There is a new version of this script written in PowerSell and now named azrtos_cicd.ps1. Use that script instead. The documentation for that script is in the file README.md and the embedded help of that script.** 4 5This directory contains a collection of files to execute several automated operations on all ports. 6These are batch scripts and auxiliary files (expected test results, etc). 7 8## These operations include: 9* Build: compile the port example. 10* Clean: remove all build generated files. 11* Test: test the example with the toolchain simulator. 12* Test_FVP: test the example using the ARM FVP platform. 13 14## azrtos_cicd.old.bat 15This is the main entry point for operations to be performed on several examples at the same time. 16This script can be called from any location, it will automatically perform the requested operations on the examples of the repository where it is located. 17This file outputs a summary to the screen and a detailed log file with all the output called azrtos_do.all.log 18Call this scripts without parameters to get usage information. 19The script parameters are case insensitive. 20 21## Examples: 22 23`azrtos_cicd.old.bat build tx ghs iar` 24This will build all GHS and IAR example projects. 25 26`azrtos_cicd.old.bat clean tx all` 27This cleans all ThreadX examples 28 29`azrtos_cicd.old.bat build txm iar` 30This builds all ThreadX Modules IAR examples. 31