run timezone and firewall tests in CI

Both tests work in CI just fine so we should run them every time. I
introduce them as a separate jobs because jobs run in parallel so it
takes less time even though it does not share object store.
This commit is contained in:
Martin Sehnoutka 2019-09-10 14:27:49 +02:00 committed by msehnout
parent 27bbb02265
commit c082222cf4
2 changed files with 11 additions and 1 deletions

View file

@ -24,3 +24,12 @@ jobs:
- name: f30-boot
before_install: sudo apt-get install -y systemd-container yum qemu-kvm
script: sudo env "PATH=$PATH" python3 -m test --case f30-boot --build-pipeline samples/build-from-yum.json
- name: timezone
before_install: sudo apt-get install -y systemd-container yum tar
script: sudo env "PATH=$PATH" python3 -m test --case timezone --build-pipeline samples/build-from-yum.json
- name: firewall
before_install: sudo apt-get install -y systemd-container yum tar
script: sudo env "PATH=$PATH" python3 -m test --case firewall --build-pipeline samples/build-from-yum.json
- name: locale
before_install: sudo apt-get install -y systemd-container yum tar
script: sudo env "PATH=$PATH" python3 -m test --case locale --build-pipeline samples/build-from-yum.json

View file

@ -14,7 +14,8 @@
},
"packages": [
"dnf",
"systemd"
"systemd",
"tar"
]
}
}