Skip to content

Commit

Permalink
fix demo
Browse files Browse the repository at this point in the history
  • Loading branch information
Benedikt Haas committed May 28, 2024
1 parent fe242f4 commit 1e45f5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/actions/deploy-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ runs:
- name: Render Composefile
shell: bash
run: ${GITHUB_ACTION_PATH}/scripts/render-composefile.sh ${{ inputs.remote-path }}${{ inputs.remote-composefile }} ${{ inputs.composefile-path }}
env:
RENDERCOMPOSE_OUTFILE: ${{ inputs.composefile-path }}
- name: Upload rendered Composefile
uses: actions/upload-artifact@v4
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/composite/simulation-testing/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ inputs:
description: Deploy token that will be used to access the remote repository
remote-composefile:
description: Path to the Composefile(s) from the remote repository which should be downloaded
startup-delay:
description: Time to wait before scenarios should run so environment can start up properly
default: 5000
# Scenario exec
scenario-runner-image:
description: 'Image of the CARLA scenario runner'
Expand Down Expand Up @@ -43,6 +46,9 @@ runs:
remote-deploytoken: ${{ inputs.remote-deploytoken }}
remote-composefile: ${{ inputs.remote-composefile }}
remote-path: ./rendercompose-remote/
- name: Wait for environment startup
shell: bash
run: sleep ${{ inputs.startup-delay }}
- name: Run scenario
uses: ./.github/actions/run-scenario
with:
Expand Down

0 comments on commit 1e45f5b

Please sign in to comment.