Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ jobs:
run: |
go run github.com/google/go-licenses check \
--allowed_licenses=Apache-2.0,Apache-3,BSD-2-Clause,BSD-2-Clause,BSD-3-Clause,BSD-4-Clause,CC0-1.0,ISC,MIT \
--ignore github.com/Jigsaw-Code/outline-ss-server \

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe these need to change to golang.getoutline.org. Same for the other places

--ignore github.com/OutlineFoundation/outline-ss-server \
./...
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,14 @@ go run github.com/go-task/task/v3/cmd/task test

You can benchmark the cipher finding code with
```
go test -cpuprofile cpu.prof -memprofile mem.prof -bench . -benchmem -run=^$ github.com/Jigsaw-Code/outline-ss-server/shadowsocks
go test -cpuprofile cpu.prof -memprofile mem.prof -bench . -benchmem -run=^$ github.com/OutlineFoundation/outline-ss-server/shadowsocks
```

You can inspect the CPU or memory profiles with `go tool pprof cpu.prof` or `go tool pprof mem.prof`, and then enter `web` on the prompt.

## Release

We use [GoReleaser](https://goreleaser.com/) to build and upload binaries to our [GitHub releases](https://github.com/Jigsaw-Code/outline-ss-server/releases).
We use [GoReleaser](https://goreleaser.com/) to build and upload binaries to our [GitHub releases](https://github.com/OutlineFoundation/outline-ss-server/releases).

Summary:
- Test the build locally:
Expand Down
2 changes: 1 addition & 1 deletion outlinecaddy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ From this directory, build and run a custom Caddy binary with this Go module plu
xcaddy build \
--with github.com/iamd3vil/caddy_yaml_adapter \
--with github.com/mholt/caddy-l4 \
--with github.com/Jigsaw-Code/outline-ss-server/outlinecaddy
--with github.com/OutlineFoundation/outline-ss-server/outlinecaddy
./caddy run --config examples/simple.yaml --adapter yaml --watch
```

Expand Down
Loading