Longer timeout #144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/ci-scripts-build.yml for use with EPICS Base ci-scripts | |
# (see: https://github.com/epics-base/ci-scripts) | |
# This is YAML - indentation levels are crucial | |
# Set the 'name:' properties to values that work for you (pvxs) | |
name: recsync | |
# Trigger on pushes and PRs to any branch | |
on: | |
push: | |
paths: | |
- client/** | |
pull_request: | |
paths: | |
- client/** | |
env: | |
SETUP_PATH: .ci-local:.ci | |
EPICS_TEST_IMPRECISE_TIMING: YES | |
jobs: | |
build-linux: | |
defaults: | |
run: | |
working-directory: client | |
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-24.04, ubuntu-22.04, ubuntu-20.04] | |
cmp: [gcc, clang] | |
configuration: [default, static, debug, static-debug] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Prepare and compile dependencies | |
run: python .ci/cue.py prepare | |
- name: Build main module (example app) | |
run: python .ci/cue.py build | |
- name: Run main module tests | |
run: python .ci/cue.py -T 15M test | |
- name: Collect and show test results | |
run: python .ci/cue.py test-results | |
build-macos: | |
defaults: | |
run: | |
working-directory: client | |
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-14, macos-13, macos-12] | |
cmp: [clang] | |
configuration: [default, debug] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Prepare and compile dependencies | |
run: python .ci/cue.py prepare | |
- name: Build main module (example app) | |
run: python .ci/cue.py build | |
- name: Run main module tests | |
run: python .ci/cue.py -T 15M test | |
- name: Collect and show test results | |
run: python .ci/cue.py test-results | |
build-windows: | |
defaults: | |
run: | |
working-directory: client | |
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@v4 | |
with: | |
submodules: true | |
- name: Prepare and compile dependencies | |
run: python .ci/cue.py prepare | |
- name: Build main module (example app) | |
run: python .ci/cue.py build | |
- name: Run main module tests | |
run: python .ci/cue.py -T 15M test | |
- name: Collect and show test results | |
run: python .ci/cue.py test-results | |
build-cross: | |
defaults: | |
run: | |
working-directory: client | |
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 | |
- [email protected] | |
- [email protected] | |
- RTEMS-pc686-qemu@5 | |
include: | |
- cross: [email protected] | |
test: NO | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Prepare and compile dependencies | |
run: python .ci/cue.py prepare | |
- name: Build main module (example app) | |
run: python .ci/cue.py build | |
- name: Run main module tests | |
run: python .ci/cue.py -T 15M test | |
- name: Collect and show test results | |
run: python .ci/cue.py test-results |