mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
With Go 1.14 (https://tip.golang.org/doc/go1.14#go-command), it now automatically checks for the existence of a vendor directory. So there is no need to explicitly set the `-mod=vendor` flag.
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package utils
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func CompileGo(t *testing.T, sourceCode, outputPath string) {
|
|
dir, err := ioutil.TempDir(".", "")
|
|
require.NoError(t, err)
|
|
defer os.RemoveAll(dir)
|
|
|
|
dir, err = filepath.Abs(dir)
|
|
require.NoError(t, err)
|
|
|
|
// Write out main.go given the source code.
|
|
main := filepath.Join(dir, "main.go")
|
|
err = ioutil.WriteFile(main, []byte(sourceCode), 0600)
|
|
require.NoError(t, err)
|
|
|
|
_, sourceFile, _, ok := runtime.Caller(0)
|
|
require.True(t, ok)
|
|
serverPath := filepath.Dir(filepath.Dir(sourceFile))
|
|
|
|
out := &bytes.Buffer{}
|
|
cmd := exec.Command("go", "build", "-o", outputPath, main)
|
|
cmd.Dir = serverPath
|
|
cmd.Stdout = out
|
|
cmd.Stderr = out
|
|
err = cmd.Run()
|
|
if err != nil {
|
|
t.Log("Go compile errors:\n", out.String())
|
|
}
|
|
require.NoError(t, err, "failed to compile go")
|
|
}
|