File tree 4 files changed +10
-5
lines changed
4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,11 @@ echo "HAPI_DIR=${HAPI_DIR}" | tee -a ${LOG_FILE}
42
42
cd ${HAPI_DIR}
43
43
pwd | tee -a ${LOG_FILE}
44
44
ls -al | tee -a ${LOG_FILE}
45
- jar xvf " ${BUILD_ZIP_FILE} " | tee -a ${LOG_FILE}
45
+ # jar xvf "${BUILD_ZIP_FILE}" | tee -a ${LOG_FILE}
46
+
47
+ # Fix for M4 chips being unable to execute the jar command
48
+ dnf install zip unzip -y | tee -a ${LOG_FILE}
49
+ unzip -o " ${BUILD_ZIP_FILE} " -d " ${HAPI_DIR} " | tee -a ${LOG_FILE}
46
50
[[ $? -ne 0 ]] && echo " Failure occurred during decompress" && exit 1
47
51
echo " ................................end: extract-platform.sh" | tee -a ${LOG_FILE}
48
52
exit 0
Original file line number Diff line number Diff line change @@ -49,7 +49,9 @@ AddToFileList ${CONFIG_DIR}
49
49
AddToFileList ${KEYS_DIR}
50
50
AddToFileList ${UPGRADE_DIR}
51
51
echo " creating zip file" | tee -a ${LOG_FILE}
52
- jar cvfM " ${ZIP_FULLPATH} " " @${FILE_LIST} "
52
+ # jar cvfM "${ZIP_FULLPATH}" "@${FILE_LIST}"
53
+ zip " ${ZIP_FULLPATH} " -@ < " ${FILE_LIST} " | tee -a ${LOG_FILE}
53
54
echo " ...end support-zip.sh" | tee -a ${LOG_FILE}
54
- jar -u -v --file=${ZIP_FULLPATH} ${OUTPUT_DIR} /support-zip.log
55
+ # jar -u -v --file=${ZIP_FULLPATH} ${OUTPUT_DIR}/support-zip.log
56
+ zip -u -v " ${ZIP_FULLPATH} " ${OUTPUT_DIR} /support-zip.log
55
57
exit 0
Original file line number Diff line number Diff line change @@ -144,7 +144,6 @@ export function bootstrapTestVariables(
144
144
145
145
const deployment : string = argv . getArg < DeploymentName > ( flags . deployment ) || `${ namespace . name } -deployment` ;
146
146
const cacheDir : string = argv . getArg < string > ( flags . cacheDir ) || getTestCacheDir ( testName ) ;
147
- resetForTest ( namespace . name , cacheDir ) ;
148
147
const configManager : ConfigManager = container . resolve ( InjectTokens . ConfigManager ) ;
149
148
configManager . update ( argv . build ( ) ) ;
150
149
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import fs from 'fs';
11
11
*/
12
12
13
13
export const HELM_VERSION = 'v3.14.2' ;
14
- export const SOLO_CHART_VERSION = '0.47 .0' ;
14
+ export const SOLO_CHART_VERSION = '0.48 .0' ;
15
15
export const HEDERA_PLATFORM_VERSION = 'v0.59.5' ;
16
16
export const MIRROR_NODE_VERSION = 'v0.126.0' ;
17
17
export const HEDERA_EXPLORER_VERSION = '24.12.1' ;
You can’t perform that action at this time.
0 commit comments