diff options
author | Remi Collet <remi@remirepo.net> | 2024-08-05 15:50:17 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-08-05 15:50:17 +0200 |
commit | 9e1002b4bd54e3b961a521a48ddab084a84acc10 (patch) | |
tree | 442faa27d57ebf2ec705242ecdab04efadfc4675 /mockit | |
parent | 015f1540d65d9c2dcee44ddea7bc8f55d2db1858 (diff) |
scl84
Diffstat (limited to 'mockit')
-rwxr-xr-x | mockit | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -35,9 +35,9 @@ fi # Queue commands if [ "$1" == "--list" ]; then - echo "-- x86_64 queue --" + echo "-- x86_64 queue: $($REDISCLI scard mockx) tasks --" $REDISCLI smembers mockx - echo "-- aarch64 queue --" + echo "-- aarch64 queue: $($REDISCLI scard mocka) tasks --" $REDISCLI smembers mocka exit 0 elif [ "$1" == "--clean" ]; then @@ -60,13 +60,13 @@ shift 2 # PHP version build range if [ "$1" = "" ]; then - MIN=0 + MIN=56 else MIN=$1 shift fi if [ "$1" = "" ]; then - MAX=99 + MAX=84 else MAX=$1 shift @@ -133,15 +133,15 @@ echo mockit $SRPM $DIST $MIN $MAX $@ case $DIST in fc38x|fc39x|fc39a|fc40x|fc40a|el9x|el9a) LST="82 81 74 80 83" - SCL="74 80 81 82 83" + SCL="74 80 81 82 83 84" ;; el8a) LST="72 73 74 80 81 82 83" - SCL="72 73 74 80 81 82 83" + SCL="72 73 74 80 81 82 83 84" ;; el8x) LST="72 73 74 80 81 82 83" - SCL="56 70 71 72 73 74 80 81 82 83" + SCL="56 70 71 72 73 74 80 81 82 83 84" ;; allx) if [ $REDIS -ge 1 ]; then |