version: 2 jobs: build: docker: - image: tinygo/tinygo-dev working_directory: /usr/local/go/src/github.com/tinygo-org/bluetooth steps: - checkout - run: tinygo version - run: name: "Run TinyGo smoke tests" command: make smoketest-tinygo - run: name: "Run Linux smoke tests" command: make smoketest-linux - run: name: "Install Windows cross compiler" command: | # Install the tools themselves. apt-get install -y gcc-mingw-w64-x86-64 - run: name: "Run Windows smoke tests" command: make smoketest-windows