Lines Matching +full:python3 +full:- +full:minimal

1 name: FreeRTOS-Kernel Demos
5 WIN32-MSVC:
7 runs-on: windows-latest
9 - name: Checkout the FreeRTOS/FreeRTOS Repository
15 fetch-depth: 1
18 - name: Checkout Pull Request
23 - name: Add msbuild to PATH
24 uses: microsoft/setup-msbuild@v1.1
26 - name: Build WIN32-MSVC Demo
27 working-directory: FreeRTOS/Demo/WIN32-MSVC
28 run: msbuild WIN32.sln -t:rebuild
30 - name: Build WIN32-MSVC-Static-Allocation-Only Demo
31 working-directory: FreeRTOS/Demo/WIN32-MSVC-Static-Allocation-Only
32 run: msbuild WIN32.sln -t:rebuild
34 WIN32-MingW:
36 runs-on: windows-latest
38 - name: Checkout the FreeRTOS/FreeRTOS Repository
44 fetch-depth: 1
47 - name: Checkout Pull Request
52 - name: Build WIN32-MingW Demo
53 working-directory: FreeRTOS/Demo/WIN32-MingW
55 gcc --version
56 make --version
59 POSIX-GCC:
61 runs-on: ubuntu-latest
63 - name: Checkout the FreeRTOS/FreeRTOS Repository
69 fetch-depth: 1
72 - name: Checkout Pull Request
77 - name: Install GCC
80 sudo apt-get -y update
81 sudo apt-get -y install build-essential
83 - name: Build Posix_GCC Demo
85 working-directory: FreeRTOS/Demo/Posix_GCC
86 run: make -j
88 MSP430-GCC:
90 runs-on: ubuntu-latest
92 - name: Checkout the FreeRTOS/FreeRTOS Repository
98 fetch-depth: 1
101 - name: Checkout Pull Request
106 - name: Install MSP430 Toolchain
109 sudo apt-get -y update
110 sudo apt-get -y install gcc-msp430 build-essential
112 - name: Build msp430_GCC Demo
114 working-directory: FreeRTOS/Demo/msp430_GCC
115 run: make -j
117 ARM-GCC:
119 runs-on: ubuntu-latest
121 - name: Checkout the FreeRTOS/FreeRTOS Repository
126 fetch-depth: 1
128 - name: Fetch Community-Supported-Demos Submodule
131 # Fetch Community-Supported-Demos Submodule
132 echo "::group::Fetch Community-Supported-Demos Submodule"
133 …git submodule update --checkout --init --depth 1 FreeRTOS/Demo/ThirdParty/Community-Supported-Demos
136 echo -e "\033[32;3mCloned the Community-Supported-Demos\033[0m"
138 echo -e "\033[32;31mCommunity-Supported-Demos Clone Failed...\033[0m"
143 - name: Checkout Pull Request
148 - name: Install GNU ARM Toolchain
151 sudo apt-get -y update
152 … sudo apt-get -y install gcc-arm-none-eabi build-essential cmake git ninja-build python3-minimal
154 - name: Build CORTEX_MPU_M3_MPS2_QEMU_GCC Demo
156 working-directory: FreeRTOS/Demo/CORTEX_MPU_M3_MPS2_QEMU_GCC
157 run: make -j
159 - name: Build CORTEX_LM3S102_GCC Demo
161 working-directory: FreeRTOS/Demo/CORTEX_LM3S102_GCC
162 run: make -j
164 - name: Build CORTEX_LM3S811_GCC Demo
166 working-directory: FreeRTOS/Demo/CORTEX_LM3S811_GCC
167 run: make -j
169 - name: Build CORTEX_M0+_RP2040 Demos
171 working-directory: FreeRTOS/Demo/ThirdParty/Community-Supported-Demos/CORTEX_M0+_RP2040
173 git clone https://github.com/raspberrypi/pico-sdk.git
174 cmake -B build -DPICO_SDK_PATH=pico-sdk -GNinja
175 ninja -C build --verbose
177 - name: Build CORTEX_MPS2_QEMU_IAR_GCC Demo
179 working-directory: FreeRTOS/Demo/CORTEX_MPS2_QEMU_IAR_GCC
180 run: make -C build/gcc -j