Skip to content

Commit 30846b1

Browse files
committed
CI ubuntu22 to ubuntu24
1 parent c4088cf commit 30846b1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ci/github-actions/setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -euo pipefail
33
echo "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
@@ -83,7 +83,7 @@ else
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

ci/github-actions/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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}

0 commit comments

Comments
 (0)