forked from omegaup/omegaup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlint.sh
executable file
·57 lines (50 loc) · 1.78 KB
/
lint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
set -e
OMEGAUP_ROOT="$(git rev-parse --show-toplevel)"
CONTAINER_VERSION=omegaup/hook_tools:v1.0.9
if [[ $# != 0 ]]; then
# The caller has given us the explicit arguments.
ARGS="$@"
else
# Try to guess the set of changed files. Only specifying one commit so it
# diffs against the current working tree.
REMOTE="origin"
if [ -d "${OMEGAUP_ROOT}/.git/refs/remotes/upstream" ]; then
REMOTE="upstream"
fi
REMOTE_HASH="$(git rev-parse "${REMOTE}/main")"
MERGE_BASE="$(git merge-base "${REMOTE_HASH}" HEAD)"
ARGS="fix ${MERGE_BASE}"
fi
if [[ -t 0 ]]; then
# This is being run in an environment where stdin is connected to a TTY.
TTY_ARGS="--interactive --tty"
else
TTY_ARGS=""
fi
if [[ "${OMEGAUP_ROOT}" == "/opt/omegaup" ]]; then
echo "Running ./stuff/lint.sh inside a container is not supported." 1>&2
echo "Please run this command outside the container" 1>&2
exit 1
fi
DOCKER_PATH="$(which docker)"
if [[ $? != 0 || -z "${DOCKER_PATH}" ]]; then
echo "Docker binary not found." 1>&2
echo "Please install docker or run this command outside the container." 1>&2
exit 1
fi
"${DOCKER_PATH}" run $TTY_ARGS --rm \
--user "$(id -u):$(id -g)" \
--env "GIT_AUTHOR_NAME=$(git config user.name)" \
--env "GIT_AUTHOR_EMAIL=$(git config user.email)" \
--env "GIT_COMMITTER_NAME=$(git config user.name)" \
--env "GIT_COMMITTER_EMAIL=$(git config user.email)" \
--volume "${OMEGAUP_ROOT}:/src" \
--volume "${OMEGAUP_ROOT}:${OMEGAUP_ROOT}" \
--volume "${OMEGAUP_ROOT}:/opt/omegaup" \
--env 'PYTHONIOENCODING=utf-8' \
--env "MYPYPATH=${OMEGAUP_ROOT}/stuff" \
--env "VIRTUAL_ENV=${OMEGAUP_ROOT}/stuff/venv" \
--entrypoint='' \
"${CONTAINER_VERSION}" bash -c "PATH=\"${OMEGAUP_ROOT}/stuff/venv/bin:\$PATH\" exec python3 -m omegaup_hook_tools --command-name=\"./stuff/lint.sh\" ${ARGS}"
echo OK