Reverse steps #101
Workflow file for this run
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
# This is a basic workflow to help you get started with Actions | |
name: Test MONAI Deploy Express | |
on: | |
push: | |
paths: | |
- 'deploy/monai-deploy-express/**' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Controls when the workflow will run | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- name: Start MONAI Deploy Express | |
working-directory: ./deploy/monai-deploy-express | |
continue-on-error: true | |
run: | | |
./init.sh | |
docker compose up --wait | |
- name: Informatics Gateway Health Check | |
continue-on-error: true | |
run: | | |
curl http://localhost:5000/health | |
- name: Workflow Manager Health Check | |
continue-on-error: true | |
run: | | |
curl http://localhost:5001/health | |
- name: Task Manager Health Check | |
continue-on-error: true | |
run: | | |
curl http://localhost:5002/health | |
- name: Stop MONAI Deploy Express | |
working-directory: ./deploy/monai-deploy-express | |
continue-on-error: true | |
run: docker compose down | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: logs | |
path: ./deploy/monai-deploy-express/logs.txt | |
- name: Collect Logs | |
working-directory: ./deploy/monai-deploy-express | |
continue-on-error: true | |
run: docker compose logs > logs.txt |