File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22set -euo pipefail
33echo " The build architecture is ${ImageOS} "
44
5- if [ " ${ImageOS} " == " ubuntu22 " ] && [ " ${BUILD_TYPE} " == " docker" ]; then
5+ if [ " ${ImageOS} " == " ubuntu24 " ] && [ " ${BUILD_TYPE} " == " docker" ]; then
66 echo " Installing docker compose"
77 sudo rm -f /usr/local/bin/docker-compose
88 curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION} /docker-compose-` uname -s` -` uname -m` > docker-compose
8383 ulimit -n 4096
8484 ulimit -a
8585
86- elif [ " ${ImageOS} " == " ubuntu22 " ]; then
86+ elif [ " ${ImageOS} " == " ubuntu24 " ]; then
8787 echo " Setting up Ubuntu for unit tests and Rubocop"
8888 # install pipe viewer to throttle printing logs to screen (not a big deal in linux, but it is in osx)
8989 sudo apt-get update && sudo apt-get install -y wget gnupg software-properties-common build-essential
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ if [ "${ImageOS}" == "macos15" ]; then
1111 export GEM_HOME=" $GITHUB_WORKSPACE /gems"
1212 export GEM_PATH=" $GITHUB_WORKSPACE /gems:$GITHUB_WORKSPACE /gems/bundler/gems"
1313 mongo_dir=" /usr/local/bin"
14- elif [ " ${ImageOS} " == " ubuntu22 " ]; then
14+ elif [ " ${ImageOS} " == " ubuntu24 " ]; then
1515 # Dir containing openstudio
1616 export ENERGYPLUS_EXE_PATH=/usr/local/openstudio-${OPENSTUDIO_VERSION}${OPENSTUDIO_VERSION_EXT} /EnergyPlus/energyplus
1717 export PATH=/usr/local/ruby/bin:/usr/bin:/usr/local/openstudio-${OPENSTUDIO_VERSION}${OPENSTUDIO_VERSION_EXT} /bin:${PATH}
You can’t perform that action at this time.
0 commit comments