Mercurial > hg > orthanc-tests
view Start.sh @ 460:281a599f5338
fix
author | Alain Mazy <am@osimis.io> |
---|---|
date | Wed, 30 Mar 2022 09:54:11 +0200 |
parents | 2ca9e31d582f |
children | 4ee2cdbfc602 |
line wrap: on
line source
#!/bin/bash # Without Docker on Ubuntu 18.04: # # (1) Compile Orthanc 0.8.6: # $ cd $HOME/Releases/ # $ hg clone -u Orthanc-0.8.6 https://hg.orthanc-server.com/orthanc Orthanc-0.8.6 # $ mkdir $HOME/Releases/Orthanc-0.8.6/Build # $ cd $HOME/Releases/Orthanc-0.8.6/Build # $ cmake .. -DCMAKE_BUILD_TYPE=Release -DSTATIC_BUILD=ON # $ make -j4 UnitTests Orthanc # # (2) Run the integration tests using Orthanc 0.8.6: # $ rm -rf /tmp/OrthancStorage ; python ./Tests/Run.py --orthanc=$HOME/Releases/Orthanc-0.8.6/Build/Orthanc --force # set -ex sudo docker run --rm -t -i -p 5000:5000 -p 5001:5001 \ -v `pwd`:/tmp/tests:ro \ --entrypoint python jodogne/orthanc-tests \ /tmp/tests/Tests/Run.py --docker $*