tinygo-org / tinyfont

Text library for TinyGo displays
https://tinygo.org
BSD 3-Clause "New" or "Revised" License
49 stars 12 forks source link

go mod #30

Closed sago35 closed 3 years ago

sago35 commented 3 years ago

Need to add go.sum to fix the error in CI. I ran the go mod download tinygo.org/x/drivers and registered go.mod and go.sum.

https://app.circleci.com/pipelines/github/tinygo-org/tinyfont/26/workflows/b8103131-4f3a-4068-b194-ca2bd7bd777f/jobs/27

#!/bin/bash -eo pipefail
make smoketest

tinygo build -size short -o examples_epd.hex -target=microbit            ./examples/epd
go: tinygo.org/x/drivers@v0.14.0: missing go.sum entry; to add it:
    go mod download tinygo.org/x/drivers
make: *** [Makefile:34: examples_epd.hex] Error 1

Exited with code exit status 2

CircleCI received exit code 2
sago35 commented 3 years ago

Changes to go.mod and go.sum have been moved to #29