Skip to content

Adds telemetry packet definition step. (#2024) #5

Adds telemetry packet definition step. (#2024)

Adds telemetry packet definition step. (#2024) #5

# This is a basic workflow to help you get started with Actions
name: MacOS-CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master, devel ]
pull_request:
branches: [ master, devel, release/v3.0.0 ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
MacOS-Framework:
runs-on: macos-latest
steps:
- name: "Checkout F´ Repository"
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- name: F prime CI step
run: ./ci/tests/Framework.bash
# Archive the outputs
- name: 'Archive Logs'
uses: actions/upload-artifact@v3
if: always()
with:
name: ci-framework-logs
path: ci-logs.tar.gz
retention-days: 5
MacOS-Ref:
runs-on: macos-latest
steps:
- name: "Checkout F´ Repository"
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- name: F prime CI step
run: ./ci/tests/Ref.bash
# Archive the outputs
- name: 'Archive Logs'
uses: actions/upload-artifact@v3
if: always()
with:
name: ci-ref-logs
path: ci-logs.tar.gz
retention-days: 5
MacOS-Integration:
runs-on: macos-latest
steps:
- name: "Checkout F´ Repository"
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- name: Install coreutils
run: brew install coreutils
- name: F prime CI step
run: ./ci/tests/30-ints.bash
# Archive the outputs
- name: 'Archive Logs'
uses: actions/upload-artifact@v3
if: always()
with:
name: ci-int-logs
path: ci-logs.tar.gz
retention-days: 5