mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-07-28 16:24:03 +02:00
Adapt mage build tool
This commit is contained in:
parent
592affc521
commit
6096673bf7
111
magefile.go
Normal file
111
magefile.go
Normal file
@ -0,0 +1,111 @@
|
||||
// Licensed to Elasticsearch B.V. under one or more contributor
|
||||
// license agreements. See the NOTICE file distributed with
|
||||
// this work for additional information regarding copyright
|
||||
// ownership. Elasticsearch B.V. licenses this file to you under
|
||||
// the Apache License, Version 2.0 (the "License"); you may
|
||||
// not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing,
|
||||
// software distributed under the License is distributed on an
|
||||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
|
||||
// +build mage
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/magefile/mage/mg"
|
||||
"github.com/magefile/mage/sh"
|
||||
|
||||
"github.com/elastic/beats/dev-tools/mage"
|
||||
)
|
||||
|
||||
func init() {
|
||||
mage.SetBuildVariableSources(mage.DefaultBeatBuildVariableSources)
|
||||
|
||||
mage.BeatDescription = "One sentence description of the Beat."
|
||||
}
|
||||
|
||||
// Build builds the Beat binary.
|
||||
func Build() error {
|
||||
return mage.Build(mage.DefaultBuildArgs())
|
||||
}
|
||||
|
||||
// GolangCrossBuild build the Beat binary inside of the golang-builder.
|
||||
// Do not use directly, use crossBuild instead.
|
||||
func GolangCrossBuild() error {
|
||||
return mage.GolangCrossBuild(mage.DefaultGolangCrossBuildArgs())
|
||||
}
|
||||
|
||||
// BuildGoDaemon builds the go-daemon binary (use crossBuildGoDaemon).
|
||||
func BuildGoDaemon() error {
|
||||
return mage.BuildGoDaemon()
|
||||
}
|
||||
|
||||
// CrossBuild cross-builds the beat for all target platforms.
|
||||
func CrossBuild() error {
|
||||
return mage.CrossBuild()
|
||||
}
|
||||
|
||||
// CrossBuildGoDaemon cross-builds the go-daemon binary using Docker.
|
||||
func CrossBuildGoDaemon() error {
|
||||
return mage.CrossBuildGoDaemon()
|
||||
}
|
||||
|
||||
// Clean cleans all generated files and build artifacts.
|
||||
func Clean() error {
|
||||
return mage.Clean()
|
||||
}
|
||||
|
||||
// Package packages the Beat for distribution.
|
||||
// Use SNAPSHOT=true to build snapshots.
|
||||
// Use PLATFORMS to control the target platforms.
|
||||
func Package() {
|
||||
start := time.Now()
|
||||
defer func() { fmt.Println("package ran for", time.Since(start)) }()
|
||||
|
||||
mage.UseCommunityBeatPackaging()
|
||||
|
||||
mg.Deps(Update)
|
||||
mg.Deps(CrossBuild, CrossBuildGoDaemon)
|
||||
mg.SerialDeps(mage.Package, TestPackages)
|
||||
}
|
||||
|
||||
// TestPackages tests the generated packages (i.e. file modes, owners, groups).
|
||||
func TestPackages() error {
|
||||
return mage.TestPackages()
|
||||
}
|
||||
|
||||
// Update updates the generated files (aka make update).
|
||||
func Update() error {
|
||||
return sh.Run("make", "update")
|
||||
}
|
||||
|
||||
// Fields generates a fields.yml for the Beat.
|
||||
func Fields() error {
|
||||
return mage.GenerateFieldsYAML()
|
||||
}
|
||||
|
||||
// GoTestUnit executes the Go unit tests.
|
||||
// Use TEST_COVERAGE=true to enable code coverage profiling.
|
||||
// Use RACE_DETECTOR=true to enable the race detector.
|
||||
func GoTestUnit(ctx context.Context) error {
|
||||
return mage.GoTest(ctx, mage.DefaultGoTestUnitArgs())
|
||||
}
|
||||
|
||||
// GoTestIntegration executes the Go integration tests.
|
||||
// Use TEST_COVERAGE=true to enable code coverage profiling.
|
||||
// Use RACE_DETECTOR=true to enable the race detector.
|
||||
func GoTestIntegration(ctx context.Context) error {
|
||||
return mage.GoTest(ctx, mage.DefaultGoTestIntegrationArgs())
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user