2020-09-02 15:19:26 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# schedule openQA jobs for the current Fedora CoreOS builds in the
|
|
|
|
# various streams; if the current build has already been tested,
|
|
|
|
# this will not create any new jobs
|
|
|
|
|
2020-09-02 15:24:19 -07:00
|
|
|
for stream in stable testing next; do /usr/local/bin/fedora-openqa fcosbuild --stream $stream > /dev/null 2>&1 || /usr/bin/true; done
|