mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
3b248fccc8
* Drone: Add Windows PR pipeline * CI: Add Dockerfile for WiX image
28 lines
452 B
Go
28 lines
452 B
Go
//+build mage
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/magefile/mage/mg"
|
|
"github.com/magefile/mage/sh"
|
|
)
|
|
|
|
const imageName = "grafana/ci-wix:0.1.1"
|
|
|
|
// Build builds the Docker image.
|
|
func Build() error {
|
|
if err := sh.RunV("docker", "build", "-t", imageName, "."); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Publish publishes the Docker image.
|
|
func Publish() error {
|
|
mg.Deps(Build)
|
|
return sh.RunV("docker", "push", imageName)
|
|
}
|
|
|
|
var Default = Build
|