blob: 2a9f046ebdda01a8a5851b5452c89ca7d6c34b36 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/bash
function run {
echo "running pipeline for $1"
curl --request POST --form "token=$BUILD_TRIGGER" --form ref=$1 https://gitlab.com/api/v4/projects/180398/trigger/pipeline || exit 1
}
run "ci_deheader"
sleep 15s
run "ci_gcc4x"
sleep 15s
run "ci_gcc49"
sleep 15s
run "ci_clang3x"
sleep 15s
run "ci_customnls"
sleep 15s
run "ci_clang-tidy"
sleep 15s
run "ci_h"
sleep 15s
run "ci_gcc6_tests"
sleep 15s
run "ci_gcc6"
|