Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
.travis.yml: remove travis matrix and do a single sequential run #3085
Merged
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
Jump to file or symbol
Failed to load files and symbols.
17
spread.yaml
| @@ -0,0 +1,12 @@ | ||
| +summary: Run project unit tests | ||
| + | ||
| +systems: [ubuntu-16.04-64] | ||
| + | ||
| +restore: | | ||
| + rm -rf /tmp/unit-tests | ||
| + | ||
| +execute: | | ||
| + mkdir -p /tmp/unit-tests/src/github.com/snapcore | ||
| + cp -ar $PROJECT_PATH /tmp/unit-tests/src/github.com/snapcore | ||
| + chown -R test:12345 /tmp/unit-tests | ||
| + su -l -c "cd /tmp/unit-tests/src/github.com/snapcore/snapd && GOPATH=/tmp/unit-tests ./run-checks --unit" test |