2019-10-30 03:54:47 +07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-11-02 21:32:58 +07:00
|
|
|
log "github.com/sirupsen/logrus"
|
2019-10-30 03:54:47 +07:00
|
|
|
"github.com/spf13/cobra"
|
2020-04-05 19:37:21 +07:00
|
|
|
|
|
|
|
"github.com/authelia/authelia/internal/utils"
|
2019-10-30 03:54:47 +07:00
|
|
|
)
|
|
|
|
|
2020-05-02 12:06:39 +07:00
|
|
|
// RunCI run the CI scripts.
|
2019-10-30 03:54:47 +07:00
|
|
|
func RunCI(cmd *cobra.Command, args []string) {
|
2019-11-30 23:49:52 +07:00
|
|
|
log.Info("=====> Build stage <=====")
|
2020-05-06 02:35:32 +07:00
|
|
|
|
2021-06-25 18:53:20 +07:00
|
|
|
buildkite, _ := cmd.Flags().GetBool("buildkite")
|
|
|
|
if buildkite {
|
|
|
|
if err := utils.CommandWithStdout("authelia-scripts", "--log-level", "debug", "--buildkite", "build").Run(); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if err := utils.CommandWithStdout("authelia-scripts", "--log-level", "debug", "build").Run(); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2019-10-30 03:54:47 +07:00
|
|
|
}
|
|
|
|
|
2019-11-30 23:49:52 +07:00
|
|
|
log.Info("=====> Unit testing stage <=====")
|
2020-05-06 02:35:32 +07:00
|
|
|
|
2019-11-02 21:32:58 +07:00
|
|
|
if err := utils.CommandWithStdout("authelia-scripts", "--log-level", "debug", "unittest").Run(); err != nil {
|
|
|
|
log.Fatal(err)
|
2019-10-30 03:54:47 +07:00
|
|
|
}
|
|
|
|
}
|