Skip to content

Commit

Permalink
ARUMLPD-34 Fix call
Browse files Browse the repository at this point in the history
  • Loading branch information
kkadosa committed Sep 20, 2023
1 parent 1d8cf08 commit 8add6e0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,14 @@ runs:
$installResult = Start-Process -FilePath '${{ steps.is-iqs-aub-installed.outputs.installer_path }}' -ArgumentList @("/install", "/quiet") -Wait -PassThru
exit $installResult.ExitCode
- name: Run the IncQuery AUTOSAR-UML Bridge
- name: Create the license file
shell: pwsh
run: |
echo '${{ inputs.license }}' | Out-File -FilePath '${{ runner.temp }}/IncQueryAUB.lic'
echo 'licenseFilePath: IncQueryAUB.lic' | Out-File -FilePath '${{ runner.temp }}/IncQueryAUBLic.yaml'
- name: Run the IncQuery AUTOSAR-UML Bridge
shell: pwsh
run: |
$env:ARUML_HOME = 'C:\Program Files\IncQuery Labs\IncQuery AUTOSAR-UML Bridge\Transformation\'
& 'C:\Program Files\IncQuery Labs\IncQuery AUTOSAR-UML Bridge\CLI\iql-aub-cli.exe' -i='${{ inputs.arxml_file_path }}' -e='${{ inputs.ea_model_file_path }}' -l='${{ runner.temp }}/IncQueryAUBLic.yaml'
& 'C:\Program Files\IncQuery Labs\IncQuery AUTOSAR-UML Bridge\CLI\iql-aub-cli.exe' -i='${{ inputs.arxml_file_path }}' -e='${{ inputs.ea_model_file_path }}' -l '${{ runner.temp }}/IncQueryAUBLic.yaml'

0 comments on commit 8add6e0

Please sign in to comment.