We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a4d2d9 commit 001a493Copy full SHA for 001a493
1 file changed
.github/workflows/NativePipeline.yml
@@ -692,11 +692,15 @@ jobs:
692
with:
693
name: android-app
694
path: android-app
695
- - name: "Start runtime"
696
- uses: ./.github/actions/start-runtime
697
- with:
698
- mda-file: automation.mda
699
- mendix-version: ${{ needs.mendix-version.outputs.mendix_version }}
+ - name: "Start runtime with retry"
+ uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08
+ with:
+ timeout_minutes: 10
+ max_attempts: 3
700
+ command: |
701
+ .github/scripts/setup-runtime.sh "${{ inputs.mda-file }}" "${{ inputs.mendix-version }}" "${{ steps.setup-java.outputs.path }}" "${{ github.workspace }}"
702
+ # Then verify
703
+ grep "The MxRuntime is fully started now." var/opt/m2ee/m2ee.log
704
- name: "Install Maestro"
705
run: |
706
mkdir -p $HOME/.local/bin
0 commit comments