26 lines
569 B
Bash
Executable File
26 lines
569 B
Bash
Executable File
#!/usr/bin/env bash
|
|
##
|
|
## BSD 3-Clause License
|
|
##
|
|
## This file is part of the Basalt project.
|
|
## https://gitlab.com/VladyslavUsenko/basalt.git
|
|
##
|
|
## Copyright (c) 2019-2021, Vladyslav Usenko and Nikolaus Demmel.
|
|
## All rights reserved.
|
|
##
|
|
|
|
#
|
|
# Usage:
|
|
# rerun-failed-in.sh FOLDER
|
|
#
|
|
# Reruns all failed experiments that are found in a given folder.
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
"$SCRIPT_DIR"/list-jobs.sh "$1" -s -o failed | while read f; do
|
|
echo "$f"
|
|
"$SCRIPT_DIR"/rerun-one-in.sh "$f" || true
|
|
done
|