-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
39 lines (39 loc) · 1.38 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# action.yml
name: 'AGREE-CI-Action'
description: 'Conduct AGREE analysis on a component of an AADL model'
inputs:
workspace-location: # dir of workspace
description: 'The path to the workspace containing the AADL projects (equivalent to -path option for headless Eclipse)'
required: false
default: '.'
project-name:
description: 'The name of the AADL project containing the model to analyze'
required: true
default: 'Top'
component-to-analyze: # id of input
description: 'The name of the component on which to conduct analysis'
required: true
default: 'Top.impl'
analysis-strategy: # agree analysis type
description: 'The agree analysis strategy to employ'
required: false
default: 'single'
optional-flags:
description: 'Optional flags, see https://github.com/loonwerks/AGREE/tree/master/com.rockwellcollins.atc.agree.cli#readme for the complete list'
required: false
outputs:
timestamp:
description: 'The date/time that the analysis was completed'
status:
description: 'Summary of analysis completion status'
status-messages:
description: 'Description of analysis completion status'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.workspace-location }}
- ${{ inputs.project-name }}
- ${{ inputs.component-to-analyze }}
- ${{ inputs.analysis-strategy }}
- ${{ inputs.optional-flags }}