Skip to content

Commit c2875b1

Browse files
committed
Add am6254_soc to CI
1 parent 7dfbffc commit c2875b1

3 files changed

Lines changed: 23 additions & 3 deletions

File tree

.github/workflows/real-time-cpp.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,26 @@ jobs:
145145
./target/build/build.sh ${{ matrix.suite }} rebuild
146146
ls -la ./bin/ref_app.hex ./bin/ref_app.s19 ./bin/ref_app.map
147147
working-directory: ./ref_app/
148+
target-arm-aarch64:
149+
runs-on: ubuntu-latest
150+
defaults:
151+
run:
152+
shell: bash
153+
strategy:
154+
fail-fast: false
155+
matrix:
156+
suite: [ am6254_soc ]
157+
steps:
158+
- uses: actions/checkout@v4
159+
with:
160+
fetch-depth: '0'
161+
- name: update-tools
162+
run: sudo apt install gcc-aarch-none-elf
163+
- name: target-arm-${{ matrix.suite }}
164+
run: |
165+
./target/build/build.sh ${{ matrix.suite }} rebuild
166+
ls -la ./bin/ref_app.hex ./bin/ref_app.s19 ./bin/ref_app.map
167+
working-directory: ./ref_app/
148168
target-arm-cmake:
149169
runs-on: ubuntu-latest
150170
defaults:

ref_app/target/micros/am6254_soc/make/am6254_soc_files.gmk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright Christopher Kormanyos 2013 - 2021.
2+
# Copyright Christopher Kormanyos 2025.
33
# Distributed under the Boost Software License,
44
# Version 1.0. (See accompanying file LICENSE_1_0.txt
55
# or copy at http://www.boost.org/LICENSE_1_0.txt)

ref_app/target/micros/am6254_soc/make/am6254_soc_flags.gmk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright Christopher Kormanyos 2013 - 2024.
2+
# Copyright Christopher Kormanyos 2025.
33
# Distributed under the Boost Software License,
44
# Version 1.0. (See accompanying file LICENSE_1_0.txt
55
# or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -29,7 +29,7 @@ TGT_CFLAGS = -std=c11
2929
-Wno-psabi \
3030
$(TGT_ALLFLAGS)
3131

32-
TGT_CXXFLAGS = -std=c++23 \
32+
TGT_CXXFLAGS = -std=c++14 \
3333
$(TGT_ALLFLAGS)
3434

3535
TGT_INCLUDES = -I$(PATH_TGT)/Code \

0 commit comments

Comments
 (0)