Skip to content

Commit

Permalink
Fix autify-cli-installer-url parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
riywo committed Sep 28, 2022
1 parent ca1f8e3 commit 22ce82d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
shell-installer-url:
type: string
required: false
required: true

jobs:
test:
Expand All @@ -27,7 +27,7 @@ jobs:
with:
access-token: token
autify-path: autify-with-proxy
shell-installer-url: ${{ inputs.shell-installer-url }}
autify-cli-installer-url: ${{ inputs.shell-installer-url }}
autify-test-url: https://app.autify.com/projects/0000/scenarios/0000
- run: test "${{ steps.web-test-run.outputs.exit-code }}" = 0
- run: echo "${{ steps.web-test-run.outputs.log }}" | grep "Successfully started"
Expand All @@ -38,7 +38,7 @@ jobs:
with:
access-token: token
autify-path: autify-with-proxy
shell-installer-url: ${{ inputs.shell-installer-url }}
autify-cli-installer-url: ${{ inputs.shell-installer-url }}
autify-test-url: https://app.autify.com/projects/0000/scenarios/0000
wait: true
- run: test "${{ steps.web-test-run-wait.outputs.exit-code }}" = 0
Expand All @@ -50,7 +50,7 @@ jobs:
with:
access-token: token
autify-path: autify-with-proxy
shell-installer-url: ${{ inputs.shell-installer-url }}
autify-cli-installer-url: ${{ inputs.shell-installer-url }}
autify-test-url: https://app.autify.com/projects/0000/scenarios/0000
wait: true
autify-connect-client: true
Expand All @@ -64,7 +64,7 @@ jobs:
with:
access-token: token
autify-path: autify-with-proxy
shell-installer-url: ${{ inputs.shell-installer-url }}
autify-cli-installer-url: ${{ inputs.shell-installer-url }}
autify-test-url: https://app.autify.com/projects/0000/test_plans/0000
- run: test "${{ steps.web-test-run-test-plan.outputs.exit-code }}" = 0
- run: echo "${{ steps.web-test-run-test-plan.outputs.log }}" | grep "Successfully started"
Expand All @@ -75,7 +75,7 @@ jobs:
with:
access-token: token
autify-path: autify-with-proxy
shell-installer-url: ${{ inputs.shell-installer-url }}
autify-cli-installer-url: ${{ inputs.shell-installer-url }}
autify-test-url: https://app.autify.com/projects/0000/test_plans/0000
wait: true
- run: test "${{ steps.web-test-run-test-plan-wait.outputs.exit-code }}" = 0
Expand All @@ -87,7 +87,7 @@ jobs:
with:
access-token: token
autify-path: autify-with-proxy
shell-installer-url: ${{ inputs.shell-installer-url }}
autify-cli-installer-url: ${{ inputs.shell-installer-url }}
autify-test-url: https://app.autify.com/projects/0000/test_plans/0000
wait: true
autify-connect-client: true
Expand All @@ -101,6 +101,7 @@ jobs:
with:
access-token: token
autify-path: 'false'
autify-cli-installer-url: ${{ inputs.shell-installer-url }}
autify-test-url: https://app.autify.com/projects/0000/scenarios/0000
continue-on-error: true
- run: test "${{ steps.failed.outputs.exit-code }}" = 1
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/nightly-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ on:
jobs:
stable:
uses: ./.github/workflows/integration-test.yml
with:
shell-installer-url: https://autify-cli-assets.s3.amazonaws.com/autify-cli/channels/stable/install-cicd.bash
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ jobs:

integration-test:
uses: ./.github/workflows/integration-test.yml
with:
shell-installer-url: https://autify-cli-assets.s3.amazonaws.com/autify-cli/channels/stable/install-cicd.bash

0 comments on commit 22ce82d

Please sign in to comment.