Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,6 @@ jobs:
packages: "./pkg/workflow"
pattern: ""
skip_pattern: "TestCompile|TestWorkflow|TestGenerate|TestParse|TestMCP|TestTool|TestSkill|TestPlaywright|TestFirewall|TestValidat|TestLock|TestError|TestWarning|SafeOutputs|CreatePullRequest|OutputLabel|HasSafeOutputs|GitHub|Git|PushToPullRequest|BuildFromAllowed|Render|Bundle|Script|WritePromptText|^TestCache|TestCacheDependencies|TestCacheKey|TestValidateCache|^TestActionPinSHAsMatchVersionTags|^TestAction[^P]|Container|Dependabot|Security|PII|TestPermissions|TestPackageExtractor|TestCollectPackagesFromWorkflow|TestAgent|TestCopilot|TestCustom|TestEngine|TestModel|TestNetwork|TestOpenAI|TestProvider|String|Sanitize|Normalize|Trim|Clean|Format|Runtime|Setup|Install|Download|Version|Binary"
- name: "AWMG Gateway Tests" # MCP gateway integration tests
packages: "./pkg/awmg"
pattern: ""
concurrency:
group: ci-${{ github.ref }}-integration-${{ matrix.test-group.name }}
cancel-in-progress: true
Expand Down
24 changes: 0 additions & 24 deletions .github/workflows/smoke-copilot-no-firewall.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,6 @@ Thumbs.db
/gh-aw-darwin-arm64
/gh-aw-linux-amd64
/gh-aw-linux-arm64
/awmg
/awmg-darwin-amd64
/awmg-darwin-arm64
/awmg-linux-amd64
/awmg-linux-arm64
/awmg-windows-amd64.exe

# credentials
.credentials/
Expand Down
4 changes: 0 additions & 4 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,6 @@ issues:
- gosec
text: "^G104:" # Ignore "errors unhandled" - intentional in tests
path: _test\.go
- linters:
- gosec
text: "^G204:" # Allow exec.Command in controlled contexts
path: pkg/awmg/gateway\.go
- linters:
- gosec
text: "^G204:" # Allow docker commands in actionlint
Expand Down
7 changes: 0 additions & 7 deletions DEVGUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,6 @@ make lint
# Build and test the binary
make build
./gh-aw --help

# Build the awmg (MCP gateway) standalone binary
make build-awmg
./awmg --help

# Build both binaries
make all
```

### 4. Install the Extension Locally for Testing
Expand Down
13 changes: 1 addition & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,20 @@

# Variables
BINARY_NAME=gh-aw
AWMG_BINARY_NAME=awmg
VERSION ?= $(shell git describe --tags --always --dirty)

# Build flags
LDFLAGS=-ldflags "-s -w -X main.version=$(VERSION)"

# Default target
.PHONY: all
all: build build-awmg
all: build

# Build the binary, run make deps before this
.PHONY: build
build: sync-templates sync-action-pins
go build $(LDFLAGS) -o $(BINARY_NAME) ./cmd/gh-aw

# Build the awmg (MCP gateway) binary
.PHONY: build-awmg
build-awmg:
go build $(LDFLAGS) -o $(AWMG_BINARY_NAME) ./cmd/awmg

# Build for all platforms
.PHONY: build-all
build-all: build-linux build-darwin build-windows
Expand All @@ -30,20 +24,15 @@ build-all: build-linux build-darwin build-windows
build-linux:
GOOS=linux GOARCH=amd64 go build $(LDFLAGS) -o $(BINARY_NAME)-linux-amd64 ./cmd/gh-aw
GOOS=linux GOARCH=arm64 go build $(LDFLAGS) -o $(BINARY_NAME)-linux-arm64 ./cmd/gh-aw
GOOS=linux GOARCH=amd64 go build $(LDFLAGS) -o $(AWMG_BINARY_NAME)-linux-amd64 ./cmd/awmg
GOOS=linux GOARCH=arm64 go build $(LDFLAGS) -o $(AWMG_BINARY_NAME)-linux-arm64 ./cmd/awmg

.PHONY: build-darwin
build-darwin:
GOOS=darwin GOARCH=amd64 go build $(LDFLAGS) -o $(BINARY_NAME)-darwin-amd64 ./cmd/gh-aw
GOOS=darwin GOARCH=arm64 go build $(LDFLAGS) -o $(BINARY_NAME)-darwin-arm64 ./cmd/gh-aw
GOOS=darwin GOARCH=amd64 go build $(LDFLAGS) -o $(AWMG_BINARY_NAME)-darwin-amd64 ./cmd/awmg
GOOS=darwin GOARCH=arm64 go build $(LDFLAGS) -o $(AWMG_BINARY_NAME)-darwin-arm64 ./cmd/awmg

.PHONY: build-windows
build-windows:
GOOS=windows GOARCH=amd64 go build $(LDFLAGS) -o $(BINARY_NAME)-windows-amd64.exe ./cmd/gh-aw
GOOS=windows GOARCH=amd64 go build $(LDFLAGS) -o $(AWMG_BINARY_NAME)-windows-amd64.exe ./cmd/awmg

# Test the code (runs both unit and integration tests)
.PHONY: test
Expand Down
73 changes: 0 additions & 73 deletions cmd/awmg/main.go

This file was deleted.

162 changes: 0 additions & 162 deletions docs/awmg.md

This file was deleted.

Loading