We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 541506a commit 04e5a83Copy full SHA for 04e5a83
test/test-images.sh
@@ -49,6 +49,18 @@ docker compose build
49
log "Starting containers..."
50
docker compose up --detach
51
52
+log "Verifying version.txt..."
53
+diff \
54
+ <(docker compose exec nginx cat /usr/share/nginx/html/version.txt) \
55
+ <(cat <<EOF
56
+versions:
57
+$(git rev-parse HEAD) ($(git describe --tags))
58
+ $(cd client && git rev-parse HEAD) client ($(cd client && git describe --tags))
59
+ $(cd server && git rev-parse HEAD) server ($(cd server && git describe --tags))
60
+EOF
61
+ )
62
+log "version.txt looks OK."
63
+
64
log "Verifying frontend..."
65
check_path 180 / 'ODK Central'
66
log " Frontend started OK."
0 commit comments