fe985a8c84
Now that the standard testing is run on GitHub Actions, we can remove it from .travis.yml, leaving only the selinux-testsuite sanity check, which can't be migrated. Hopefully this will save some precious minutesfrom the limited "plan" Travis gave us... Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com>
14 lines
317 B
YAML
14 lines
317 B
YAML
# Define the building environment
|
|
language: c
|
|
|
|
# Use Travis-CI Ubuntu 18.04 Bionic Beaver, "full image" variant
|
|
sudo: required
|
|
dist: bionic
|
|
|
|
script:
|
|
- FEDORA_MAJOR=33 FEDORA_MINOR=1.2 scripts/ci/travis-kvm-setup.sh
|
|
|
|
# Do not spam by email so long as the build succeeds
|
|
notifications:
|
|
email:
|
|
on_success: never
|