Arango Smoke Test #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Arango Smoke Test | |
on: | |
workflow_run: | |
workflows: ["Minimal Jalapeno Spinup"] | |
types: [completed] | |
jobs: | |
Run-XRD: | |
runs-on: self-hosted | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Run XRD testbed | |
run: | | |
cd ${{ github.workspace }}/build/tools/xrd | |
docker-compose up -d | |
Check-Arango: | |
needs: Run-XRD | |
runs-on: self-hosted | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Check Arango for routes | |
run: | | |
cd ${{ github.workspace }}/build/tools | |
sleep 60 | |
./check_arango.sh |