Skip to content

Commit d675de2

Browse files
committed
GHA fix rtems_target
1 parent e703210 commit d675de2

1 file changed

Lines changed: 14 additions & 9 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -133,21 +133,26 @@ jobs:
133133
run: python cue.py test-results
134134

135135
build-rtems:
136-
name: RTEMS${{ matrix.rtems }} / ${{ matrix.configuration }} / ${{ matrix.os }}
137-
runs-on: ${{ matrix.os }}
136+
name: RTEMS${{ matrix.rtems }} / ${{ matrix.rtems_target }}
137+
runs-on: ubuntu-20.04
138138
env:
139-
CMP: ${{ matrix.cmp }}
140-
BCFG: ${{ matrix.configuration }}
139+
CMP: gcc
140+
BCFG: default
141141
RTEMS: ${{ matrix.rtems }}
142-
RTEMS_TARGET: RTEMS-pc686-qemu
142+
RTEMS_TARGET: ${{ matrix.rtems_target }}
143143
APT: re2c g++-mingw-w64-i686 g++-mingw-w64-x86-64 qemu-system-x86
144144
strategy:
145145
fail-fast: false
146146
matrix:
147-
os: [ubuntu-20.04]
148-
cmp: [gcc]
149-
configuration: [default, debug]
150-
rtems: ["4.9", "4.10", "5"]
147+
include:
148+
- rtems: "4.9"
149+
rtems_target: RTEMS-pc386-qemu
150+
151+
- rtems: "4.10"
152+
rtems_target: RTEMS-pc386-qemu
153+
154+
- rtems: "5"
155+
rtems_target: RTEMS-pc686-qemu
151156
steps:
152157
- uses: actions/checkout@v2
153158
- name: Prepare and compile dependencies

0 commit comments

Comments
 (0)