116 lines
3.3 KiB
Go
116 lines
3.3 KiB
Go
|
// 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.BeatDescription = "Winlogbeat ships Windows event logs to Elasticsearch or Logstash."
|
||
|
|
||
|
mage.Platforms = mage.Platforms.Filter("windows")
|
||
|
}
|
||
|
|
||
|
// 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()
|
||
|
}
|
||
|
|
||
|
// CrossBuildXPack cross-builds the beat with XPack for all target platforms.
|
||
|
func CrossBuildXPack() error {
|
||
|
return mage.CrossBuildXPack()
|
||
|
}
|
||
|
|
||
|
// 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.UseElasticBeatPackaging()
|
||
|
mg.Deps(Update)
|
||
|
mg.Deps(CrossBuild, CrossBuildXPack, 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())
|
||
|
}
|