blob: f9083207eb6d3c084b41851d73de4df3b7da741f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/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"
run "ci_gcc4x"
|