Skip to content

Commit e54ecfe

Browse files
committed
Fixed validate environment variables check in CIBB_64b build script
1 parent bd23f8c commit e54ecfe

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

build-scripts/CI/CIBB_64b

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,16 +110,15 @@ FOLDER_VERSION=64
110110
KERNEL=kernel8
111111
ARCH=armv8-a+fp+simd
112112
TARGET=aarch64-linux-gnu
113-
GDB_VERSION=10.2
113+
GDB_VERSION=15.1
114114

115115
#validate env variables
116116
if ! [[ "$GCC_VERSION" =~ ^(8.3.0|10.2.1|12.2.0)$ ]]; then exit 1; fi
117117
if ! [[ "$GLIBC_VERSION" =~ ^(2.28|2.31|2.36)$ ]]; then exit 1; fi
118118
if ! [[ "$BINUTILS_VERSION" =~ ^(2.31.1|2.35.2|2.40)$ ]]; then exit 1; fi
119-
if ! [[ "$FOLDER_VERSION" =~ ^(0|1|2)$ ]]; then exit 1; fi
120-
if ! [[ "$KERNEL" =~ ^(kernel|kernel7)$ ]]; then exit 1; fi
121-
if ! [[ "$ARCH" =~ ^(armv6|armv7-a|armv8-a)$ ]]; then exit 1; fi
122-
if ! [[ "$FPU" =~ ^(vfp|neon-vfpv4|neon-fp-armv8)$ ]]; then exit 1; fi
119+
if [ "$KERNEL" != "kernel8" ]; then exit 1; fi
120+
if [ "$ARCH" != "armv8-a+fp+simd" ]; then exit 1; fi
121+
if [ "$FOLDER_VERSION" != "64" ]; then exit 1; fi
123122
if [ "$BUILDDIR" = "" ]; then exit 1; fi
124123
if [ "$LANGUAGES" = "" ]; then exit 1; fi
125124

0 commit comments

Comments
 (0)