Skip to content

Commit

Permalink
Merge pull request #36 from keysight-eggplant/Release_1_0_15
Browse files Browse the repository at this point in the history
Update DAI version support 7.5.0-10
  • Loading branch information
ZiLiangYeoh authored Nov 25, 2024
2 parents 9606a06 + bec0e12 commit a911767
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,13 @@ Based on the pipeline .yml configuration, when there is commits or pull request
</thead>
<tbody>
<tr>
<td>7.5.0-9</td>
<td>7.5.0-10</td>
<td><a href="https://github.com/marketplace/actions/eggplant-runner">latest</a></td>
</tr>
<tr>
<td>7.5.0-9</td>
<td><a href="https://github.com/marketplace/actions/eggplant-runner?version=v1.0.12">v1.0.14</a></td>
</tr>
<tr>
<td>7.4.0-4</td>
<td><a href="https://github.com/marketplace/actions/eggplant-runner?version=v1.0.12">v1.0.12</a></td>
Expand Down Expand Up @@ -211,6 +215,8 @@ This is because double quotes (`"`) that are not escaped are used to wrap all th
Furthermore, if your parameter inputs contain a dollar sign (`$`) special character, you must escape it with two backslashes `\\$` because the dollar sign is a reserved keyword for the workflow.<br />
Example: `parameters: "value=\\\"double quote with one dollar \\$ sign\\\""`

6. Release v1.0.15 (DAI 7.5.0-10) now allows passes after re-run.

# License

The scripts and documentation in this project are released under the [MIT License](LICENSE)
14 changes: 7 additions & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ runs:
echo "DOWNLOAD_URL=https://assets.eggplantsoftware.com/EggplantRunner/$EXE_FILENAME" >> $GITHUB_ENV
shell: bash
env:
DAI_VERSION: 7.5.0-9 # AUB-13519_CICD_Junit_file_implementation
DAI_VERSION: 7.5.0-10 # AUB-13519_CICD_Junit_file_implementation

- name: Fetch CLI
if: ${{ inputs.eggplantRunnerPath }}
Expand All @@ -106,12 +106,12 @@ runs:
filename_length=${#filename}
CLI_FILENAME_LENGTH=${#CLI_FILENAME}
if [ "$CLI_FILENAME_LENGTH" == 29 ]; then
filename_minor=${filename:0:$((filename_length - 4))}
CLI_minor=${CLI_FILENAME:0:$((CLI_FILENAME_LENGTH - 4))}
elif [ "$CLI_FILENAME_LENGTH" == 35 ]; then
filename_minor=${filename:0:$((filename_length - 8))}
CLI_minor=${CLI_FILENAME:0:$((CLI_FILENAME_LENGTH - 8))}
if [ "$CLI_FILENAME_LENGTH" == 30 ]; then
filename_minor=${filename:0:$((filename_length - 5))}
CLI_minor=${CLI_FILENAME:0:$((CLI_FILENAME_LENGTH - 5))}
elif [ "$CLI_FILENAME_LENGTH" == 36 ]; then
filename_minor=${filename:0:$((filename_length - 9))}
CLI_minor=${CLI_FILENAME:0:$((CLI_FILENAME_LENGTH - 9))}
else
filename_minor=not match
CLI_minor=not correct file format
Expand Down

0 comments on commit a911767

Please sign in to comment.