You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 30, 2022. It is now read-only.
set PATH=%GOPATH%\bin;%GOBIN%\bin;c:\tools\mingw64\bin;%PATH%
echo %PATH%
echo %GOPATH%
go version
go env
build:
verbosity: normal
deploy: false
before_build:
- cmd: >-
go get -v -u github.com/mattn/go-sqlite3
go get -v -u -t ./...
build_script:
- cmd: >-
go build -v -tags sqlite github.com/gobuffalo/buffalo/buffalo
go install -tags sqlite github.com/gobuffalo/buffalo/buffalo
test_script:
- cmd: for /f "" %%G in ('go list github.com/gobuffalo/buffalo/... ^| find /i /v "/vendor/"') do ( go test -tags sqlite %%G & IF ERRORLEVEL == 1 EXIT 1)