1
0
mirror of https://github.com/makew0rld/amfora.git synced 2025-01-03 14:56:27 -05:00

💚 Install make on Windows, use cross-compatible cache dirs

This commit is contained in:
makeworld 2020-09-02 17:34:33 -04:00
parent 00a4eb769c
commit 054e5eb077

View File

@ -12,6 +12,9 @@ os:
- osx - osx
- windows - windows
before_install:
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install make; fi
script: script:
- go test -race ./... - go test -race ./...
- make - make
@ -21,8 +24,8 @@ env:
cache: cache:
directories: directories:
- $HOME/.cache/go-build - $GOCACHE
- $GOPATH/pkg/mod - $GOMODCACHE
# TODO: GitHub Releases deploy # TODO: GitHub Releases deploy