blob: 12771fd029d12a5313f78b2f7405422ca506c275 (
plain)
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
|
#!/usr/bin/env bash
set -e
# Start a head.hackage job and wait for completion. Expected to be called from
# GitLab CI.
if [ -z "$HEAD_HACKAGE_TRIGGER_TOKEN" ]; then
echo "Error: Expected head.hackage trigger token in HEAD_HACKAGE_TRIGGER_TOKEN"
exit 1
fi
if [ -z "$CI_PIPELINE_ID" ]; then
echo "Error: Expected pipeline id in CI_PIPELINE_ID"
exit 1
fi
if [ -z "$HEAD_HACKAGE_PROJECT_ID" ]; then
HEAD_HACKAGE_PROJECT_ID="78"
fi
# Start pipeline
curl --silent --show-error \
--request POST \
-F "token=$HEAD_HACKAGE_TRIGGER_TOKEN" \
-F "ref=master" \
-F "variables[GHC_PIPELINE_ID]=$CI_PIPELINE_ID" \
-F "variables[EXTRA_HC_OPTS]=-dcore-lint" \
https://gitlab.haskell.org/api/v4/projects/$HEAD_HACKAGE_PROJECT_ID/trigger/pipeline \
| tee resp.json
echo
pipeline_id=$(jq .id < resp.json)
url=$(jq .web_url < resp.json)
echo
echo "Started head.hackage pipeline $pipeline_id: $url"
# Wait for completion
running=
echo "Waiting for build to complete..."
while true; do
sleep 10
curl --silent --show-error \
--request GET \
-F "job_token=$CI_JOB_TOKEN" \
https://gitlab.haskell.org/api/v4/projects/$HEAD_HACKAGE_PROJECT_ID/pipelines/$pipeline_id \
> resp.json
status=$(jq .status < resp.json)
case $status in
"\"pending\"")
;;
"\"running\"")
if [ -z "$running" ]; then
echo "Pipeline $pipeline_id is now running."
running=1
fi
;;
"\"success\"")
echo "Pipeline $pipeline_id finished successfully."
exit 0
;;
"\"failed\"")
echo "Pipeline $pipeline_id failed."
exit 1
;;
"\"canceled\"")
echo "Pipeline $pipeline_id was canceled."
exit 1
;;
"\"skipped\"")
echo "Pipeline $pipeline_id was skipped."
exit 1
;;
*)
cat resp.json
echo "Error: Unknown pipeline status $status"
exit 2
;;
esac
done
|