From 02cfd92c29481ebaae99a674b9105d327d422715 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Tue, 6 Feb 2024 16:41:36 +0100 Subject: [PATCH] ci: Add GCC 13.2 to compilers test build workflow This will test code with latest version of ARM GCC. --- .github/workflows/build_cc_target.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_cc_target.yml b/.github/workflows/build_cc_target.yml index e76c809c6..a44f3e70c 100644 --- a/.github/workflows/build_cc_target.yml +++ b/.github/workflows/build_cc_target.yml @@ -28,14 +28,14 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - gcc: ['12.2.Rel1', '11.3.Rel1', '10.3-2021.10', '9-2020-q2', '8-2019-q3'] + gcc: ['13.2.Rel1', '12.2.Rel1', '11.3.Rel1', '10.3-2021.10', '9-2020-q2', '8-2019-q3'] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: go-version: 'stable' - - uses: carlosperate/arm-none-eabi-gcc-action@48db4484a55750df7a0ccca63347fcdea6534d78 + - uses: carlosperate/arm-none-eabi-gcc-action@v1.8.1 with: release: ${{ matrix.gcc }} - name: Install newt