Skip to content
Snippets Groups Projects
Commit 8dd39063 authored by Mathieu Courtois's avatar Mathieu Courtois
Browse files

[#33511] mark submit as deprecated

parent 185b23c0
No related merge requests found
#!/bin/bash
# shell script to simulate (some steps of) the CI procedure
export SUBMIT_MODE=1
ln -sf ../devtools .
ln -sf ~/.install/debian-10/mpi install
trap "rm -f devtools install" EXIT
args=( "${@}" )
if [ $# -eq 0 ]; then
args=( "--all" )
fi
.gitlabci/debug-ci.sh "${args[@]}"
check_ci.sh
\ No newline at end of file
#!/bin/bash
if [ -f ./check_ci.sh ]; then
echo "WARNING: 'submit' is deprecated, please use ./check_ci.sh"
echo
./check_ci.sh "${@}"
else
echo "WARNING: 'submit' is deprecated, use './check_ci.sh' from the src repository."
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment