Skip to content

Latest commit

 

History

History
182 lines (136 loc) · 6.13 KB

CONTRIBUTING.md

File metadata and controls

182 lines (136 loc) · 6.13 KB

How to contribute

We'd love to accept your patches and contributions to this project.

Before you begin

Sign our Contributor License Agreement

Contributions to this project must be accompanied by a Contributor License Agreement (CLA). You (or your employer) retain the copyright to your contribution; this simply gives us permission to use and redistribute your contributions as part of the project.

If you or your current employer have already signed the Google CLA (even if it was for a different project), you probably don't need to do it again.

Visit https://cla.developers.google.com/ to see your current agreements or to sign a new one.

Review our community guidelines

This project follows Google's Open Source Community Guidelines.

Contribution process

Code reviews

All submissions, including submissions by project members, require review. We use GitHub pull requests for this purpose. Consult GitHub Help for more information on using pull requests.

Cross-platform Development

Building

In Go you can compile for other target operating system and architecture by specifying the GOOS and GOARCH environment variables and using the go build command. That only works if you are not using Cgo to call C code.

Examples

MacOS example:

% GOOS=darwin go build -C x -o ./bin/ ./outline-connectivity 
% file ./x/bin/outline-connectivity 
./x/bin/outline-connectivity: Mach-O 64-bit executable x86_64

Linux example:

% GOOS=linux go build -C x -o ./bin/ ./outline-connectivity 
% file ./x/bin/outline-connectivity                      
./x/bin/outline-connectivity: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, Go BuildID=n0WfUGLum4Y6OpYxZYuz/lbtEdv_kvyUCd3V_qOqb/CC_6GAQqdy_ebeYTdn99/Tk_G3WpBWi8vxqmIlIuU, with debug_info, not stripped

Windows example:

% GOOS=windows go build -C x -o ./bin/ ./outline-connectivity 
% file ./x/bin/outline-connectivity.exe 
./x/bin/outline-connectivity.exe: PE32+ executable (console) x86-64 (stripped to external PDB), for MS Windows

Running Linux binaries

To run Linux binaries you can use a Linux container via Podman.

Set up podman

Instructions

Install Podman (once). On macOS:

brew install podman

Create the podman service VM (once) with the podman machine init command:

podman machine init

Start the VM with the podman machine start command, after every time it is stopped:

podman machine start

You can see the VM running with the podman machine list command:

% podman machine list
NAME                     VM TYPE     CREATED        LAST UP            CPUS        MEMORY      DISK SIZE
podman-machine-default*  qemu        3 minutes ago  Currently running  1           2.147GB     107.4GB

When you are done with development, you can stop the machine with the podman machine stop command:

podman machine stop

Run

The easiest way is to run a binary is to use the go run command directly with the -exec flag and our convenience tool run_on_podman.sh:

GOOS=linux go run -C x -exec "$(pwd)/run_on_podman.sh" ./outline-connectivity

It also works with the go test command:

GOOS=linux go test -exec "$(pwd)/run_on_podman.sh"  ./...
Details and direct invocation

The run_on_podman.sh script uses the podman run command and a minimal "distroless" container image to run the binary you want:

podman run --arch $(uname -m) --rm -it -v "${bin}":/outline/bin gcr.io/distroless/static-debian11 /outline/bin "$@"

You can also use podman run directly to run a pre-built binary:

% podman run --rm -it -v ./x/bin:/outline gcr.io/distroless/static-debian11 /outline/outline-connectivity
Usage of /outline/outline-connectivity:
  -domain string
        Domain name to resolve in the test (default "example.com.")
  -key string
        Outline access key
  -proto string
        Comma-separated list of the protocols to test. Muse be "tcp", "udp", or a combination of them (default "tcp,udp")
  -resolver string
        Comma-separated list of addresses of DNS resolver to use for the test (default "8.8.8.8,2001:4860:4860::8888")
  -v    Enable debug output

Flags explanation:

  • --rm: Remove container (and pod if created) after exit
  • -i (interactive): Keep STDIN open even if not attached
  • -t (tty): Allocate a pseudo-TTY for container
  • -v (volume): Bind mount a volume into the container. Volume source will be on the server machine, not the client

Running Windows binaries

To run Windows binaries you can use Wine to emulate a Windows environment. This is not the same as a real Windows environment, so make sure you test on actual Windows machines.

Install Wine

Instructions

Follow the instructions at https://wiki.winehq.org/Download.

On macOS:

brew tap homebrew/cask-versions
brew install --cask --no-quarantine wine-stable

After installation, wine64 should be on your PATH. Check with wine64 --version:

wine64 --version

Run

You can pass wine64 as the -exec parameter in the go calls.

To build:

GOOS=windows go run -C x -exec "wine64" ./outline-connectivity

For tests:

GOOS=windows go test -exec "wine64"  ./...