-
-
Notifications
You must be signed in to change notification settings - Fork 310
Expand file tree
/
Copy pathduvrc.sh
More file actions
executable file
·171 lines (150 loc) · 4.53 KB
/
duvrc.sh
File metadata and controls
executable file
·171 lines (150 loc) · 4.53 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#!/usr/bin/env bash
set -euo pipefail
ROOT="$(git rev-parse --show-toplevel)"
BASE_MODE="${BASE_MODE:-build}"
CACHE_MODE="${CACHE_MODE:-}"
CACHE_TAG="${CACHE_TAG:-latest}"
BASE_INPUT=(
"${ROOT}/docker/base/Dockerfile"
"${ROOT}/docker/base/install_pythons.sh"
)
base_hash=$(cat "${BASE_INPUT[@]}" | git hash-object -t blob --stdin)
function base_image_id() {
docker image ls -q "ghcr.io/pex-tool/pex/base:${base_hash}"
}
if [[ "${BASE_MODE}" == "build" && -z "$(base_image_id)" ]]; then
docker build \
--tag ghcr.io/pex-tool/pex/base:latest \
--tag "ghcr.io/pex-tool/pex/base:${base_hash}" \
"${ROOT}/docker/base"
elif [[ "${BASE_MODE}" == "pull" ]]; then
docker pull "ghcr.io/pex-tool/pex/base:${base_hash}"
fi
CONTAINER_HOME="/home/$(id -un)"
USER_INPUT=(
"${BASE_INPUT[@]}"
"${ROOT}/docker/user/Dockerfile"
"${ROOT}/docker/user/create_docker_image_user.sh"
)
user_hash=$(cat "${USER_INPUT[@]}" | git hash-object -t blob --stdin)
function user_image_id() {
docker image ls -q "pex-tool/pex/user:${user_hash}"
}
if [[ -z "$(user_image_id)" ]]; then
docker build \
--build-arg BASE_IMAGE_TAG="${base_hash}" \
--build-arg USER="$(id -un)" \
--build-arg UID="$(id -u)" \
--build-arg GROUP="$(id -gn)" \
--build-arg GID="$(id -g)" \
--tag pex-tool/pex/user:latest \
--tag "pex-tool/pex/user:${user_hash}" \
"${ROOT}/docker/user"
docker run \
--rm \
--volume pex-dev-caches:/development/pex_dev \
--volume pex-xdg-caches:/var/cache \
--volume pex-tmp:/tmp \
--volume pex-venv:/development/pex/.venv \
--volume pex-dev-cmd:/development/pex/.dev-cmd \
--entrypoint bash \
--user root \
"pex-tool/pex/user:${user_hash}" \
-c "
chown -R $(id -un):$(id -gn) \
/development/pex_dev \
/var/cache \
/tmp \
/development/pex/.venv \
/development/pex/.dev-cmd
"
fi
if [[ "${CACHE_MODE}" == "pull" ]]; then
# N.B.: This is a fairly particular dance / trick that serves to populate a local named volume
# with the contents of a data-only image. In particular, starting with an empty named volume is
# required to get the subsequent no-op `docker run --volume pex-dev-caches:...` to populate that
# volume. This population only happens under that condition.
docker volume rm --force pex-dev-caches
docker volume create pex-dev-caches
docker run \
--rm \
--volume pex-dev-caches:/development/pex_dev \
--pull always \
"ghcr.io/pex-tool/pex/cache:${CACHE_TAG}" true || true
docker run \
--rm \
--volume pex-dev-caches:/development/pex_dev \
--entrypoint bash \
--user root \
"pex-tool/pex/user:${user_hash}" \
-c "chown -R $(id -u):$(id -g) /development/pex_dev"
fi
DOCKER_ARGS=()
if [[ "${1:-}" == "inspect" ]]; then
shift
DOCKER_ARGS+=(
--entrypoint bash
)
fi
if [[ -t 1 ]]; then
DOCKER_ARGS+=(
--interactive
--tty
)
fi
# We want to pass through various _PEX_ and SCIENCE_ control env vars.
for env_var in $(/usr/bin/env | grep -E "^(_PEX_|SCIENCE_)"); do
DOCKER_ARGS+=(
--env "${env_var}"
)
done
if [[ -n "${GH_TOKEN:-}" ]]; then
# Some tests in CI may need access to the GH_TOKEN.
DOCKER_ARGS+=(
--env GH_TOKEN="${GH_TOKEN}"
)
fi
if [[ -n "${GITHUB_STEP_SUMMARY:-}" ]]; then
# Some tests in CI may need access to the GITHUB_STEP_SUMMARY file.
gh_step_summary_file="$(realpath "${GITHUB_STEP_SUMMARY}")"
mkdir -p "$(dirname "${gh_step_summary_file}")"
touch "${gh_step_summary_file}"
DOCKER_ARGS+=(
--volume "${gh_step_summary_file}:${gh_step_summary_file}"
--env GITHUB_STEP_SUMMARY="${gh_step_summary_file}"
)
fi
if [[ -n "${SSH_AUTH_SOCK:-}" ]]; then
# Some integration tests need an SSH agent. Propagate it when available.
DOCKER_ARGS+=(
--volume "${SSH_AUTH_SOCK}:${SSH_AUTH_SOCK}"
--env SSH_AUTH_SOCK="${SSH_AUTH_SOCK}"
)
fi
if [[ -n "${TERM:-}" ]]; then
# Some integration tests need a TERM / terminfo. Propagate it when available.
DOCKER_ARGS+=(
--env TERM="${TERM}"
)
fi
if [[ -f "${HOME}/.netrc" ]]; then
DOCKER_ARGS+=(
--volume "${HOME}/.netrc:${CONTAINER_HOME}/.netrc"
)
fi
if [[ -d "${HOME}/.ssh" ]]; then
DOCKER_ARGS+=(
--volume "${HOME}/.ssh:${CONTAINER_HOME}/.ssh"
)
fi
exec docker run \
--rm \
--volume pex-tmp:/tmp \
--volume pex-xdg-caches:/var/cache \
--volume pex-dev-caches:/development/pex_dev \
--volume "${ROOT}:/development/pex" \
--volume pex-venv:/development/pex/.venv \
--volume pex-dev-cmd:/development/pex/.dev-cmd \
"${DOCKER_ARGS[@]}" \
"pex-tool/pex/user:${user_hash}" \
"$@"