skip clone and checkout if on gitpod workspace

This commit is contained in:
haraldreingruber 2023-11-11 12:49:03 +00:00
parent bc3808cf29
commit 469218f7e3
2 changed files with 27 additions and 20 deletions

View File

@ -135,17 +135,20 @@ else
echo "SUCCESS: Rust is up to date" echo "SUCCESS: Rust is up to date"
fi fi
Path=${1:-rustlings/} # Check if GITPOD_WORKSPACE_ID environment variable exists
echo "Cloning Rustlings at $Path..." if [ -z "$GITPOD_WORKSPACE_ID" ]; then
git clone -q https://github.com/rust-lang/rustlings "$Path" Path=${1:-rustlings/}
cd "$Path" echo "Cloning Rustlings at $Path..."
git clone -q https://github.com/rust-lang/rustlings "$Path"
Version=$(curl -s https://api.github.com/repos/rust-lang/rustlings/releases/latest | ${PY} -c "import json,sys;obj=json.load(sys.stdin);print(obj['tag_name']) if 'tag_name' in obj else sys.exit(f\"Error: {obj['message']}\");") cd "$Path"
CargoBin="${CARGO_HOME:-$HOME/.cargo}/bin"
if [[ -z ${Version} ]] Version=$(curl -s https://api.github.com/repos/rust-lang/rustlings/releases/latest | ${PY} -c "import json,sys;obj=json.load(sys.stdin);print(obj['tag_name']) if 'tag_name' in obj else sys.exit(f\"Error: {obj['message']}\");")
then CargoBin="${CARGO_HOME:-$HOME/.cargo}/bin"
if [[ -z ${Version} ]]
then
echo "The latest tag version could not be fetched remotely." echo "The latest tag version could not be fetched remotely."
echo "Using the local git repository..." echo "Using the local git repository..."
Version=$(ls -tr .git/refs/tags/ | tail -1) Version=$(ls -tr .git/refs/tags/ | tail -1)
@ -157,12 +160,15 @@ then
else else
Version="tags/${Version}" Version="tags/${Version}"
fi fi
else else
Version="tags/${Version}" Version="tags/${Version}"
fi fi
echo "Checking out version $Version..." echo "Checking out version $Version..."
git checkout -q ${Version} git checkout -q ${Version}
else
echo "GITPOD_WORKSPACE_ID found. Skipping git clone and git checkout."
fi
echo "Installing the 'rustlings' executable..." echo "Installing the 'rustlings' executable..."
cargo install --force --path . cargo install --force --path .

1
rustlings Submodule

@ -0,0 +1 @@
Subproject commit 9a743f80c57cc6bf27819589a8ddb5a5579ab1a4