Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 25 additions & 6 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
env:
CMP: ${{ matrix.cmp }}
BCFG: ${{ matrix.configuration }}
BASE: ${{ matrix.base }}
CI_CROSS_TARGETS: ${{ matrix.cross }}
TEST: ${{ matrix.test }}

Expand All @@ -29,35 +30,53 @@ jobs:
- os: ubuntu-latest
cmp: gcc
configuration: default
name: "Ub-24 default"
base: "7.0"
name: "Ub-24 Base-7.0 default"

- os: ubuntu-latest
cmp: gcc
configuration: static
name: "Ub-24 static"
base: "7.0"
name: "Ub-24 Base-7.0 static"

- os: windows-2022
cmp: vs2022
configuration: static
name: "Win-22 MSC-22 static"
base: "7.0"
name: "Win-22 Base-7.0 MSC-22 static"

- os: ubuntu-latest
cmp: gcc
configuration: default
base: "7.0"
cross: "RTEMS-pc386-qemu@4.10"
test: NO
name: "Ub-24 gcc + RT-4.10"
name: "Ub-24 Base-7.0 gcc + RT-4.10"

- os: ubuntu-latest
cmp: gcc
configuration: default
base: "7.0"
cross: "RTEMS-pc686-qemu@5"
name: "Ub-24 gcc + RT-5.1 pc686"
name: "Ub-24 Base-7.0 gcc + RT-5.1 pc686"

- os: macos-latest
cmp: clang
configuration: default
name: "MacOS clang"
base: "7.0"
name: "MacOS Base-7.0 clang"

- os: ubuntu-latest
cmp: gcc
configuration: default
base: "3.15"
name: "Ub-24 Base-3.15 default"

- os: windows-2022
cmp: vs2022
configuration: static
base: "3.15"
name: "Win-22 Base-3.15 MSC-22 static"

steps:
- uses: actions/checkout@v4
Expand Down