mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			451 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			451 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
#!/bin/bash
 | 
						|
 | 
						|
_circle_token=$1
 | 
						|
_grafana_version=$2
 | 
						|
 | 
						|
trigger_build_url="https://circleci.com/api/v1/project/grafana/grafana-docker/tree/master?circle-token=${_circle_token}"
 | 
						|
 | 
						|
post_data=$(cat <<EOF
 | 
						|
{
 | 
						|
  "build_parameters": {
 | 
						|
    "GRAFANA_VERSION": "${_grafana_version}"
 | 
						|
  }
 | 
						|
}
 | 
						|
EOF
 | 
						|
)
 | 
						|
 | 
						|
echo "${post_data}"
 | 
						|
 | 
						|
curl \
 | 
						|
--header "Accept: application/json" \
 | 
						|
--header "Content-Type: application/json" \
 | 
						|
--data "${post_data}" \
 | 
						|
--request POST "${trigger_build_url}"
 |