ARM none GCC 11.3.1 #103
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ARM none GCC 11.3.1 | |
on: [push] | |
jobs: | |
Build-All-ARM-none-GCC11: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install ARM none GCC 11.3.1 | |
shell: bash | |
run: | | |
wget https://developer.arm.com/-/media/Files/downloads/gnu/11.3.rel1/binrel/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi.tar.xz | |
echo "-----Unpack gcc tarball----" | |
tar -xf arm-gnu* | |
echo "Done" | |
echo "" | |
ls -la | |
echo "${{github.workspace}}/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi/bin" >> $GITHUB_PATH | |
echo "${{github.workspace}}/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi/arm-none-eabi/lib" >> $GITHUB_PATH | |
echo "${{github.workspace}}/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi/arm-none-eabi/include" >> $GITHUB_PATH | |
echo "${{github.workspace}}/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi/arm-none-eabi/include/c++/11.3.1" >> $GITHUB_PATH | |
echo "${{github.workspace}}/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi/arm-none-eabi/include/c++/11.3.1/arm-none-eabi" >> $GITHUB_PATH | |
echo "${{github.workspace}}/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi/arm-none-eabi/include/c++/11.3.1/backward" >> $GITHUB_PATH | |
echo "${{github.workspace}}/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi/lib/gcc/arm-none-eabi/11.3.1/include" >> $GITHUB_PATH | |
echo "${{github.workspace}}/arm-gnu-toolchain-11.3.rel1-x86_64-arm-none-eabi/lib/gcc/arm-none-eabi/11.3.1/include-fixed" >> $GITHUB_PATH | |
echo "$PATH" | |
# | |
# Cortex A9 | |
# | |
- name: Create Build Environment ARM CA9 | |
run: cmake -E make_directory ${{github.workspace}}/build_ca9 | |
- name: Configure CMake | |
shell: bash | |
working-directory: ${{github.workspace}}/build_ca9 | |
run: | | |
arm-none-eabi-gcc --version | |
cmake $GITHUB_WORKSPACE -Darmca9=1 -DDEBUG=1 | |
- name: Build ARM CA9 | |
working-directory: ${{github.workspace}}/build_ca9 | |
shell: bash | |
run: cmake --build . -j | |
- name: Save binaries | |
uses: actions/upload-artifact@v3 | |
with: | |
name: arm-ca9-elf | |
retention-days: 1 | |
path: | | |
build_ca9/test_ca9.elf | |
# | |
# Cortex M4 | |
# | |
- name: Create Build Environment ARM CM4 | |
working-directory: ${{github.workspace}} | |
run: cmake -E make_directory ${{github.workspace}}/build_cm4 | |
- name: Configure CMake | |
shell: bash | |
working-directory: ${{github.workspace}}/build_cm4 | |
run: | | |
arm-none-eabi-gcc --version | |
cmake $GITHUB_WORKSPACE -Dk64frdmevk=1 -DDEBUG=1 | |
- name: Build ARM CM4 | |
working-directory: ${{github.workspace}}/build_cm4 | |
shell: bash | |
run: cmake --build . -j | |
Run-QEMU: | |
runs-on: ubuntu-latest | |
needs: Build-All-ARM-none-GCC11 | |
timeout-minutes: 5 | |
steps: | |
- name: Set up QEMU | |
run: | | |
sudo apt-get install qemu-system-arm | |
qemu-system-arm --version | |
- name: Donwload arm binaries | |
uses: actions/download-artifact@v3 | |
with: | |
name: arm-ca9-elf | |
- name: Run Test | |
working-directory: /home/runner/work/FreeRTOS_cpp11/FreeRTOS_cpp11/ | |
run: | | |
ls -la /home/runner/work/FreeRTOS_cpp11/FreeRTOS_cpp11/ | |
qemu-system-arm -M vexpress-a9 -m 128M -nographic -semihosting -kernel test_ca9.elf | |