travis: drop unit and source tests

These are done through github actions, which are much quicker. Leave
the image tests until they will be moved over to proper integration
tests.

Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
Tom Gundersen 2020-03-10 22:51:58 +01:00
parent e8e5a11389
commit 6acc205a68

View file

@ -8,34 +8,6 @@ addons:
- gnupg2
matrix:
include:
- name: source-test
script:
- |
set -e
./tools/prepare-source.sh
if [ ! $(git diff --quiet --exit-code) ]; then
echo
echo "Please include these changes in your branch: "
git diff
fi
- name: unit-tests
arch: amd64
language: go
go: 1.12.x
env: GO111MODULE=on # needed even for Go 1.12
script: go test -v ./...
- name: unit-tests
arch: arm64
language: go
go: 1.12.x
env: GO111MODULE=on # needed even for Go 1.12
script: go test -v ./...
- name: unit-tests
arch: s390x
language: go
go: 1.12.x
env: GO111MODULE=on # needed even for Go 1.12
script: go test -v ./...
- name: image-test-empty-blueprint
arch: amd64
language: python