Skip to content

update temp tests #1712

update temp tests

update temp tests #1712

Workflow file for this run

# this is the docker image releasing pipeline, pushing to https://hub.docker.com/r/projectmonai/monai
name: docker
# versioning: compute a static version file
# local_docker: use the version file to build docker images
# docker_test_latest: test the latest internal docker image (has flake)
# docker_test_dockerhub: test the latest dockerhub release (no flake)
on:
# dev only docker deployment and quick tests
push:
branches:
- dev
- temp-test
# Allows you to run this workflow manually from the Actions tab
# This is to trigger building/testing docker image from dev only.
workflow_dispatch:
jobs:
docker_test_dockerhub:
if: github.repository == 'Project-MONAI/MONAI'
container:
image: docker://projectmonai/monai:latest
options: "--shm-size=4g --ipc=host"
runs-on: [self-hosted, linux, X64, docker]
steps:
- name: Import
run: |
df -h
pwd
export CUDA_VISIBLE_DEVICES= # min tests
python -c 'import monai; monai.config.print_debug_info()'
cd /opt/monai
ls -al
ngc --version
./runtests.sh --min
shell: bash
env:
QUICKTEST: True