Use perl instead of sed #49
Workflow file for this run
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
name: iocStats | |
# Trigger on pushes and PRs to any branch | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "**/*.md" | |
- "**/*.txt" | |
pull_request: | |
env: | |
SETUP_PATH: .ci-local:.ci | |
jobs: | |
test: | |
name: ${{ matrix.os }}/${{ matrix.deps }}/${{ matrix.base }}/${{ matrix.cmp }}/${{ matrix.configuration }}/${{ matrix.cross }} | |
runs-on: ${{ matrix.os }} | |
env: | |
CMP: ${{ matrix.cmp }} | |
BCFG: ${{ matrix.configuration }} | |
BASE: ${{ matrix.base }} | |
SET: ${{ matrix.deps }} | |
CI_CROSS_TARGETS: ${{ matrix.cross }} | |
TEST: ${{ matrix.test }} | |
APT: re2c | |
CHOCO: re2c | |
BREW: re2c | |
strategy: | |
fail-fast: false | |
matrix: | |
# Job names also name artifacts, character limitations apply | |
include: | |
- os: ubuntu-latest | |
cmp: gcc | |
configuration: default | |
base: "7.0" | |
deps: "deps" | |
- os: ubuntu-latest | |
cmp: gcc | |
configuration: static | |
base: "7.0" | |
deps: "deps" | |
- os: ubuntu-latest | |
cmp: gcc | |
configuration: static | |
base: "3.15" | |
deps: "deps" | |
- os: ubuntu-latest | |
cmp: gcc | |
configuration: static | |
base: "3.14" | |
deps: "deps" | |
- os: windows-2019 | |
cmp: vs2019 | |
configuration: default | |
base: "7.0" | |
deps: "deps" | |
- os: windows-2019 | |
cmp: vs2019 | |
configuration: static | |
base: "7.0" | |
deps: "deps" | |
- os: ubuntu-latest | |
cmp: gcc | |
configuration: default | |
base: "7.0" | |
deps: "no-deps" | |
cross: "RTEMS-pc386-qemu@4.9" | |
- os: ubuntu-latest | |
cmp: gcc | |
configuration: default | |
base: "7.0" | |
deps: "no-deps" | |
cross: "RTEMS-pc386-qemu@4.10" | |
test: NO | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Prepare and compile EPICS dependencies | |
run: python .ci/cue.py prepare | |
- name: Build main module | |
run: python .ci/cue.py build | |
- name: Run main module tests | |
run: python .ci/cue.py -T 20M test | |
- name: Upload tapfiles Artifact | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: tapfiles ${{ matrix.name }} | |
path: "**/O.*/*.tap" | |
if-no-files-found: ignore | |
- name: Collect and show test results | |
if: ${{ always() }} | |
run: python .ci/cue.py -T 5M test-results |