diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 273c8500..6f2772ba 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -28,6 +28,10 @@ from datetime import datetime, timedelta DEBUG = False QUIET = False +# don't try to run on test system +if os.uname()[1] == 'jenkins-test-vm': + sys.exit() + # tested suites SUITES = ['testing', 'unstable', 'experimental'] # tested architectures |