diff options
author | Christopher Baines <mail@cbaines.net> | 2020-12-14 21:18:56 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-12-14 21:18:56 +0000 |
commit | 34915d08b6e1f4121de5046c4d21a7f4affe9c6d (patch) | |
tree | 28e9bd1c8b36e356e31f6bba22d24341fdd75000 /scripts | |
parent | b73a604d24be553ca36963e43e7b03d2d8801357 (diff) | |
download | build-coordinator-34915d08b6e1f4121de5046c4d21a7f4affe9c6d.tar build-coordinator-34915d08b6e1f4121de5046c4d21a7f4affe9c6d.tar.gz |
Change the prioritisation again for non native target builds
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in b/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in index b107ab8..ebb0a01 100644 --- a/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in +++ b/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in @@ -179,7 +179,8 @@ 1000 500)) ((eq? type 'package) - (if (string=? system "x86_64-linux") + (if (and (string=? system "x86_64-linux") + (string=? target "none")) 500 0)) (else |