-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathmain.go
More file actions
56 lines (50 loc) · 1.79 KB
/
main.go
File metadata and controls
56 lines (50 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"context"
"dagger/anthropic-cli/internal/dagger"
)
// AnthropicCli provides Dagger functions for local development
// These complement (not replace) the GitHub Actions CI/CD
type AnthropicCli struct {
// +private
Source *dagger.Directory
}
func New(
// Source directory containing the project
source *dagger.Directory,
) *AnthropicCli {
return &AnthropicCli{Source: source}
}
// Build runs Go build in a clean container
func (m *AnthropicCli) Build(ctx context.Context) (string, error) {
return dag.Container().
From("golang:1.26-alpine").
WithExec([]string{"apk", "add", "--no-cache", "git"}).
WithMountedDirectory("/src", m.Source).
WithWorkdir("/src").
WithEnvVariable("GOPRIVATE", "github.com/anthropics/anthropic-sdk-go,github.com/stainless-sdks/anthropic-go").
WithExec([]string{"go", "build", "./..."}).
Stdout(ctx)
}
// Test runs the test suite in a clean container
func (m *AnthropicCli) Test(ctx context.Context) (string, error) {
return dag.Container().
From("golang:1.26-alpine").
WithExec([]string{"apk", "add", "--no-cache", "git", "curl", "lsof"}).
WithMountedDirectory("/src", m.Source).
WithWorkdir("/src").
WithEnvVariable("GOPRIVATE", "github.com/anthropics/anthropic-sdk-go,github.com/stainless-sdks/anthropic-go").
WithExec([]string{"go", "test", "./..."}).
Stdout(ctx)
}
// Lint runs the lint script in a clean container
func (m *AnthropicCli) Lint(ctx context.Context) (string, error) {
return dag.Container().
From("golang:1.26-alpine").
WithExec([]string{"apk", "add", "--no-cache", "git", "bash"}).
WithMountedDirectory("/src", m.Source).
WithWorkdir("/src").
WithEnvVariable("GOPRIVATE", "github.com/anthropics/anthropic-sdk-go,github.com/stainless-sdks/anthropic-go").
WithExec([]string{"./scripts/lint"}).
Stdout(ctx)
}