Some checks failed
ci-scripts build/test / cross linux-aarch64 / / default (push) Successful in 2m58s
ci-scripts build/test / cross RTEMS-pc386-qemu@4.10 / / default (push) Successful in 3m50s
ci-scripts build/test / cross linux-arm@arm-linux-gnueabi / / default (push) Successful in 2m51s
ci-scripts build/test / cross linux-arm@arm-linux-gnueabihf / / default (push) Successful in 3m2s
ci-scripts build/test / cross RTEMS-pc386-qemu@4.9 / / default (push) Successful in 3m55s
ci-scripts build/test / cross linux-ppc / / default (push) Successful in 3m33s
ci-scripts build/test / cross linux-ppc64 / / default (push) Successful in 3m35s
ci-scripts build/test / cross RTEMS-pc686-qemu@5 / / default (push) Successful in 5m33s
ci-scripts build/test / cross win32-x86-mingw / / default (push) Successful in 4m21s
ci-scripts build/test / cross windows-x64-mingw / / default (push) Successful in 5m3s
ci-scripts build/test / Unit tests on macos-11 (push) Has been cancelled
ci-scripts build/test / Unit tests on macos-12 (push) Has been cancelled
ci-scripts build/test / Unit tests on ubuntu-20.04 (push) Has been cancelled
ci-scripts build/test / Unit tests on ubuntu-22.04 (push) Has been cancelled
ci-scripts build/test / Unit tests on windows-2019 (push) Has been cancelled
ci-scripts build/test / Unit tests on windows-2022 (push) Has been cancelled
ci-scripts build/test / clang / debug / ubuntu-20.04 (push) Has been cancelled
ci-scripts build/test / clang / debug / ubuntu-22.04 (push) Has been cancelled
ci-scripts build/test / clang / default / ubuntu-20.04 (push) Has been cancelled
ci-scripts build/test / clang / default / ubuntu-22.04 (push) Has been cancelled
ci-scripts build/test / clang / static / ubuntu-20.04 (push) Has been cancelled
ci-scripts build/test / clang / static / ubuntu-22.04 (push) Has been cancelled
ci-scripts build/test / clang / static-debug / ubuntu-20.04 (push) Has been cancelled
ci-scripts build/test / clang / static-debug / ubuntu-22.04 (push) Has been cancelled
ci-scripts build/test / gcc / debug / ubuntu-20.04 (push) Has been cancelled
ci-scripts build/test / gcc / debug / ubuntu-22.04 (push) Has been cancelled
ci-scripts build/test / gcc / default / ubuntu-20.04 (push) Has been cancelled
ci-scripts build/test / gcc / default / ubuntu-22.04 (push) Has been cancelled
ci-scripts build/test / gcc / static / ubuntu-20.04 (push) Has been cancelled
ci-scripts build/test / gcc / static / ubuntu-22.04 (push) Has been cancelled
ci-scripts build/test / gcc / static-debug / ubuntu-20.04 (push) Has been cancelled
ci-scripts build/test / gcc / static-debug / ubuntu-22.04 (push) Has been cancelled
ci-scripts build/test / clang / debug / macos-11 (push) Has been cancelled
ci-scripts build/test / clang / debug / macos-12 (push) Has been cancelled
ci-scripts build/test / clang / default / macos-11 (push) Has been cancelled
ci-scripts build/test / clang / default / macos-12 (push) Has been cancelled
ci-scripts build/test / gcc / debug / windows-2019 (push) Has been cancelled
ci-scripts build/test / gcc / debug / windows-2022 (push) Has been cancelled
ci-scripts build/test / gcc / default / windows-2019 (push) Has been cancelled
ci-scripts build/test / gcc / default / windows-2022 (push) Has been cancelled
ci-scripts build/test / gcc / static / windows-2019 (push) Has been cancelled
ci-scripts build/test / gcc / static / windows-2022 (push) Has been cancelled
ci-scripts build/test / gcc / static-debug / windows-2019 (push) Has been cancelled
ci-scripts build/test / gcc / static-debug / windows-2022 (push) Has been cancelled
ci-scripts build/test / vs2019 / debug / windows-2019 (push) Has been cancelled
ci-scripts build/test / vs2019 / default / windows-2019 (push) Has been cancelled
ci-scripts build/test / vs2019 / static / windows-2019 (push) Has been cancelled
ci-scripts build/test / vs2019 / static-debug / windows-2019 (push) Has been cancelled
ci-scripts build/test / vs2022 / debug / windows-2022 (push) Has been cancelled
ci-scripts build/test / vs2022 / default / windows-2022 (push) Has been cancelled
ci-scripts build/test / vs2022 / static / windows-2022 (push) Has been cancelled
ci-scripts build/test / vs2022 / static-debug / windows-2022 (push) Has been cancelled
- 'python' is Python 2.7 on MacOS 12
144 lines
3.9 KiB
YAML
144 lines
3.9 KiB
YAML
name: ci-scripts build/test
|
|
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
SETUP_PATH: .:.ci
|
|
SET: test01
|
|
VV: 1
|
|
BASE_RECURSIVE: NO
|
|
CMP: gcc
|
|
APT: re2c
|
|
CHOCO: re2c
|
|
BREW: re2c
|
|
|
|
jobs:
|
|
unit-test:
|
|
name: Unit tests on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-22.04, ubuntu-20.04, windows-2022, windows-2019, macos-12, macos-11]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Show initial environment
|
|
run: python3 cue-test.py env
|
|
- name: Run unit tests
|
|
run: python3 cue-test.py
|
|
|
|
build-linux:
|
|
name: ${{ matrix.cmp }} / ${{ matrix.configuration }} / ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
CMP: ${{ matrix.cmp }}
|
|
BCFG: ${{ matrix.configuration }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-22.04, ubuntu-20.04]
|
|
cmp: [gcc, clang]
|
|
configuration: [default, static, debug, static-debug]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Prepare and compile dependencies
|
|
run: python cue.py prepare
|
|
- name: Build main module (example app)
|
|
run: python cue.py build
|
|
- name: Run main module tests
|
|
run: python cue.py -T 15M test
|
|
- name: Collect and show test results
|
|
run: python cue.py test-results
|
|
|
|
build-macos:
|
|
name: ${{ matrix.cmp }} / ${{ matrix.configuration }} / ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
CMP: ${{ matrix.cmp }}
|
|
BCFG: ${{ matrix.configuration }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [macos-12, macos-11]
|
|
cmp: [clang]
|
|
configuration: [default, debug]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Prepare and compile dependencies
|
|
run: python cue.py prepare
|
|
- name: Build main module (example app)
|
|
run: python cue.py build
|
|
- name: Run main module tests
|
|
run: python cue.py -T 15M test
|
|
- name: Collect and show test results
|
|
run: python cue.py test-results
|
|
|
|
build-windows:
|
|
name: ${{ matrix.cmp }} / ${{ matrix.configuration }} / ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
CMP: ${{ matrix.cmp }}
|
|
BCFG: ${{ matrix.configuration }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [windows-2022, windows-2019]
|
|
cmp: [gcc, vs2022, vs2019]
|
|
configuration: [default, static, debug, static-debug]
|
|
exclude:
|
|
- os: windows-2022
|
|
cmp: vs2019
|
|
|
|
- os: windows-2019
|
|
cmp: vs2022
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Prepare and compile dependencies
|
|
run: python cue.py prepare
|
|
- name: Build main module (example app)
|
|
run: python cue.py build
|
|
- name: Run main module tests
|
|
run: python cue.py -T 15M test
|
|
- name: Collect and show test results
|
|
run: python cue.py test-results
|
|
|
|
build-cross:
|
|
name: cross ${{ matrix.cross }} / ${{ matrix.cmp }} / ${{ matrix.configuration }}
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CMP: gcc
|
|
BCFG: default
|
|
CI_CROSS_TARGETS: ${{ matrix.cross }}
|
|
TEST: ${{ matrix.test }}
|
|
APT: re2c
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
# configuration: [default, static, debug, static-debug]
|
|
configuration: [default]
|
|
cross:
|
|
- linux-aarch64
|
|
- linux-arm@arm-linux-gnueabi
|
|
- linux-arm@arm-linux-gnueabihf
|
|
- linux-ppc
|
|
- linux-ppc64
|
|
- win32-x86-mingw
|
|
- windows-x64-mingw
|
|
- RTEMS-pc386-qemu@4.9
|
|
- RTEMS-pc386-qemu@4.10
|
|
- RTEMS-pc686-qemu@5
|
|
include:
|
|
- cross: RTEMS-pc386-qemu@4.10
|
|
test: NO
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Prepare and compile dependencies
|
|
run: python cue.py prepare
|
|
- name: Build main module (example app)
|
|
run: python cue.py build
|
|
- name: Run main module tests
|
|
run: python cue.py -T 15M test
|
|
- name: Collect and show test results
|
|
run: python cue.py test-results
|