Skip to content

temp tests

temp tests #1700

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:

Check failure on line 18 in .github/workflows/docker.yml

View workflow run for this annotation

GitHub Actions / docker

Invalid workflow file

The workflow is not valid. .github/workflows/docker.yml (Line: 18, Col: 3): The workflow must contain at least one job with no dependencies.
if: github.repository == 'Project-MONAI/MONAI'
needs: docker_build_dev
container:
image: docker://projectmonai/monai:latest
runs-on: ubuntu-latest
steps:
- name: Import
run: |
rm -rf /opt/hostedtoolcache
export CUDA_VISIBLE_DEVICES=$(python -m tests.utils | tail -n 1)
echo $CUDA_VISIBLE_DEVICES
python -c 'import monai; monai.config.print_debug_info()'
cd /opt/monai
ls -al
ngc --version
./runtests.sh --min
shell: bash
env:
QUICKTEST: True