Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 880 Bytes

CONTRIBUTING.md

File metadata and controls

49 lines (35 loc) · 880 Bytes

Development Setup

Building Wio with Your Changes

Wio uses mage to sync vendor dependencies, build Wio, and other things. You must run mage from the Wio directory.

Install mage

go get github.com/magefile/mage

To build wio

mage build

Wio binary is created inside the bin fodler of your root directory. You can source wenv for unix based systems and env.bat or env.ps1 for windows. This will add the binary to the path.

To build wio

mage build

To clean build files

mage clean

To install dependencies

mage install

Currently the script only runs tests on bash based systems. To run the tests:

wmake test

To list all available commands along with descriptions:

mage -l

Installing Go

Wio development should be done on Go version 1.11