mirror of
https://hub.psychoinformatics.de/actions/checkout-action.git
synced 2026-09-10 05:46:04 +00:00
33 lines
946 B
Shell
Executable file
33 lines
946 B
Shell
Executable file
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
set -CeEuo pipefail
|
|
IFS=$'\n\t'
|
|
trap -- 'printf >&2 "%s\n" "${0##*/}: trapped SIGINT"; exit 1' SIGINT
|
|
|
|
set -x
|
|
|
|
type -P bash >&2
|
|
bash --version >&2
|
|
for cmd in git sleep od hexdump awk sed grep; do
|
|
if [[ "${cmd}" == 'hexdump' ]] && [[ "${CONTAINER:-}" == 'windows-'* ]]; then
|
|
type -P "${cmd}" >&2 || true
|
|
else
|
|
type -P "${cmd}" >&2
|
|
fi
|
|
"${cmd}" --version >&2 || true
|
|
done
|
|
|
|
expected='^ *28$'
|
|
count=$(git ls-files | LC_ALL=C wc -l)
|
|
# BSD wc's -l emits spaces before number.
|
|
[[ "${count}" =~ ${expected} ]] || exit 1
|
|
|
|
log=$(git log --graph --decorate --oneline)
|
|
# old git prints 'HEAD, origin/ref, ref' instead of 'HEAD -> ref, origin/ref'.
|
|
grep -Eq '\* [0-9a-f]+ \(grafted, (HEAD -> [0-9A-Za-z_./-]+, origin/[0-9A-Za-z_./-]+(, origin/HEAD)?|HEAD, origin/[0-9A-Za-z_./-]+, [0-9A-Za-z_./-]+)\) ' <<<"${log}"
|
|
|
|
git rev-parse HEAD
|
|
|
|
git branch -a
|
|
|
|
./tools/ci/test-bash-func.sh
|