Skip to content

Commit

Permalink
DEVPROD-9181 Remove commit queue CLI (#8524)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsamek authored Dec 5, 2024
1 parent 63e14b4 commit b8402f0
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 1,280 deletions.
1 change: 0 additions & 1 deletion cmd/evergreen/evergreen.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ func buildApp() *cli.App {
operations.List(),
operations.LastGreen(),
operations.Subscriptions(),
operations.CommitQueue(),
operations.Scheduler(),
operations.Client(),

Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var (

// ClientVersion is the commandline version string used to control updating
// the CLI. The format is the calendar date (YYYY-MM-DD).
ClientVersion = "2024-11-07"
ClientVersion = "2024-12-04"

// Agent version to control agent rollover. The format is the calendar date
// (YYYY-MM-DD).
Expand Down
3 changes: 0 additions & 3 deletions docs/CLI.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,6 @@ evergreen task build TaskLogs --task_id <task_id> --execution <execution> --type
evergreen task build TestLogs --task_id <task_id> --execution <execution> --log_path <test_log_path>
```
#### Commit Queue
The command `evergreen commit-queue` contains subcommands for interacting with the commit queue. See [Commit Queue](Project-Configuration/Commit-Queue).
### Server Side (for Evergreen admins)
To enable auto-updating of client binaries, add a section like this to the settings file for your server:
Expand Down
10 changes: 0 additions & 10 deletions operations/before.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,6 @@ var (
return c.Set(hostFlagName, host)
}

checkCommitMessageFlag = func(c *cli.Context) error {
message := c.String(commitMessageFlag)
if message != "" {
if c.NArg() > 1 {
return errors.New("multiple arguments passed in for commit message, please consider using quotations")
}
}
return nil
}

requireProjectFlag = func(c *cli.Context) error {
if c.String(projectFlagName) == "" {
return errors.New("must specify a project")
Expand Down
Loading

0 comments on commit b8402f0

Please sign in to comment.