Skip to content
Snippets Groups Projects
Select Git revision
  • 3cccf789dba336a22e13ccd4d310bf85e41e1a27
  • master default protected
  • tidenhub-master-patch-49904
  • tidenhub-master-patch-18499
  • tidenhub-master-patch-36435
  • improvement/grasping
  • feature/simulated_robot
  • grasping_sample
8 results

vnc-entrypoint.sh

Blame
  • Forked from CeTI / ROS / panda_gazebo_workspace
    Source project has a limited visibility.
    create_release.sh 981 B
    #!/bin/bash
    git clean -d -x -f
    mkdir -p ModelValidationWithRAGs/trainbenchmark
    mkdir -p ModelValidationWithRAGs/docker-results/
    mkdir -p ModelValidationWithRAGs/docker-diagrams/
    
    cp -a \
    	.dockerignore \
    	README.{md,html,txt} AUTHORS.txt \
    	Dockerfile docker/ run_docker.sh \
    	paper-results/ \
    	preprocessor/ \
    	trainbenchmark/ \
    	ModelValidationWithRAGs/ # the target directory
    
    # remove build and gradle files
    rm -rf ModelValidationWithRAGs/trainbenchmark/*/build
    rm -rf ModelValidationWithRAGs/trainbenchmark/.gradle
    # remove generate files
    rm -rf ModelValidationWithRAGs/trainbenchmark/*/src/main/java-gen/*
    rm -f ModelValidationWithRAGs/trainbenchmark/trainbenchmark-tool-jastadd-specialized-base/src/main/jastadd/TrainGen.*
    rm ModelValidationWithRAGs/preprocessor/.gitignore
    
    echo "Now please run 'sudo docker save --output ModelValidationWithRAGs/trainbenchmark-docker.tar trainbenchmark && sudo chown $(whoami):$(whoami) ModelValidationWithRAGs/trainbenchmark-docker.tar'"