File tree Expand file tree Collapse file tree
server/app/lib/openstudio_server Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ on: [push, pull_request]
1111env :
1212 USE_TESTING_TIMEOUTS : " true"
1313 OPENSTUDIO_VERSION : 3.5.0
14- OPENSTUDIO_VERSION_SHA : d92288ec37
15- OPENSTUDIO_VERSION_EXT : " -rc2 "
14+ OPENSTUDIO_VERSION_SHA : 7b14ce1588
15+ OPENSTUDIO_VERSION_EXT : " "
1616 DOCKER_COMPOSE_VERSION : 1.21.1
1717 BUNDLE_WITHOUT : native_ext
1818
9797 - name : docker
9898 shell : bash
9999 run : |
100- export OPENSTUDIO_TAG=3.5.0-rc2
100+ export OPENSTUDIO_TAG=3.5.0
101101 sed -i -E "s/.git//g" .dockerignore
102102 docker volume create --name=osdata
103103 docker images --all
Original file line number Diff line number Diff line change 55
66# may include suffix
77ARG OPENSTUDIO_VERSION=3.5.0
8- FROM nrel/openstudio:3.5.0-rc2 as base
8+ FROM nrel/openstudio:3.5.0 as base
99MAINTAINER Nicholas Long nicholas.long@nrel.gov
1010
1111ENV DEBIAN_FRONTEND=noninteractive
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ image: Visual Studio 2019
55environment :
66 USE_TESTING_TIMEOUTS : " true"
77 OPENSTUDIO_VERSION : 3.5.0
8- OPENSTUDIO_VERSION_SHA : d92288ec37
9- OPENSTUDIO_VERSION_EXT : " -rc2 "
8+ OPENSTUDIO_VERSION_SHA : 7b14ce1588
9+ OPENSTUDIO_VERSION_EXT : " "
1010 OPENSTUDIO_TEST_EXE : C:\projects\openstudio\bin\openstudio.exe
1111 BUILD_TYPE : " test"
1212 SKIP_COVERALLS : " true"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ REM install develop build
77set OS_INSTALL_NAME = OpenStudio-%OPENSTUDIO_VERSION%%OPENSTUDIO_VERSION_EXT% %% 2B%OPENSTUDIO_VERSION_SHA% -Windows.exe
88echo Install name is %OS_INSTALL_NAME%
99REM curl -SLO --insecure https://openstudio-builds.s3.amazonaws.com/%OPENSTUDIO_VERSION%/%OS_INSTALL_NAME%
10- curl -SLO --insecure https://github.com/NREL/OpenStudio/releases/download/v3.5.0-rc2 /%OS_INSTALL_NAME%
10+ curl -SLO --insecure https://github.com/NREL/OpenStudio/releases/download/v3.5.0/%OS_INSTALL_NAME%
1111dir .
1212REM Install OpenStudio
1313%OS_INSTALL_NAME% --script ci/appveyor/install-windows.qs
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ if [ ! -z ${OPENSTUDIO_VERSION} ] && [ ! -z ${OPENSTUDIO_SHA} ]; then
1010 # OPENSTUDIO_VERSION_EXT may be empty
1111 OPENSTUDIO_DOWNLOAD_FILENAME=OpenStudio-${OPENSTUDIO_VERSION}${OPENSTUDIO_VERSION_EXT} %2B${OPENSTUDIO_SHA} -Ubuntu-18.04.deb
1212 echo " Installing OpenStudio ${OPENSTUDIO_DOWNLOAD_FILENAME} "
13- OPENSTUDIO_DOWNLOAD_BASE_URL=https://github.com/NREL/OpenStudio/releases/download/v3.5.0-rc2 /
13+ OPENSTUDIO_DOWNLOAD_BASE_URL=https://github.com/NREL/OpenStudio/releases/download/v3.5.0/
1414 OPENSTUDIO_DOWNLOAD_URL=$OPENSTUDIO_DOWNLOAD_BASE_URL /$OPENSTUDIO_DOWNLOAD_FILENAME
1515
1616 # copying this from the docker-openstudio dockerfile
1717 apt-get update && apt-get install -y curl vim gdebi-core libgmp-dev libffi-dev build-essential zlib1g-dev vim git locales sudo
18- export OPENSTUDIO_DOWNLOAD_URL=https://github.com/NREL/OpenStudio/releases/download/v3.5.0-rc2 /$OPENSTUDIO_DOWNLOAD_FILENAME
18+ export OPENSTUDIO_DOWNLOAD_URL=https://github.com/NREL/OpenStudio/releases/download/v3.5.0/$OPENSTUDIO_DOWNLOAD_FILENAME
1919
2020 echo " OpenStudio Package Download URL is ${OPENSTUDIO_DOWNLOAD_URL} "
2121 curl -SLO $OPENSTUDIO_DOWNLOAD_URL
Original file line number Diff line number Diff line change 3636 # Install openstudio -- Use the install script that is in this repo now, the one on OpenStudio/develop has changed
3737 export OS_NAME=OpenStudio-${OPENSTUDIO_VERSION}${OPENSTUDIO_VERSION_EXT} %2B${OPENSTUDIO_VERSION_SHA} -Darwin-x86_64
3838 export OS_NAME_WITH_PLUS=OpenStudio-${OPENSTUDIO_VERSION}${OPENSTUDIO_VERSION_EXT} +${OPENSTUDIO_VERSION_SHA} -Darwin-x86_64
39- curl -SL --insecure https://github.com/NREL/OpenStudio/releases/download/v3.5.0-rc2 /${OS_NAME} .tar.gz -o $OS_NAME_WITH_PLUS .tar.gz
39+ curl -SL --insecure https://github.com/NREL/OpenStudio/releases/download/v3.5.0/${OS_NAME} .tar.gz -o $OS_NAME_WITH_PLUS .tar.gz
4040 # OSX downloads with %2B but installs with + sign. These are the encoded chars in url strings.
4141 # hdiutil attach ${OS_NAME}.dmg
4242 # sed -i -e "s|REPLACEME|$HOME/openstudio|" ci/github-actions/install-mac.qs
Original file line number Diff line number Diff line change 66docker volume rm -f osdata || true
77docker volume rm -f dbdata || true
88docker image rm 127.0.0.1:5000/openstudio-server -f
9- docker build . -t=" 127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.5.0-rc2
9+ docker build . -t=" 127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.5.0
1010docker push 127.0.0.1:5000/openstudio-server
1111cd docker/R/
1212# docker image rm 127.0.0.1:5000/openstudio-rserve -f
Original file line number Diff line number Diff line change 66docker volume rm -f osdata || true
77docker volume rm -f dbdata || true
88docker image rm 127.0.0.1:5000/openstudio-server -f
9- docker build . -t=" 127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.5.0-rc2
9+ docker build . -t=" 127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.5.0
1010docker push 127.0.0.1:5000/openstudio-server
1111cd docker/R
1212# docker image rm 127.0.0.1:5000/openstudio-rserve -f
Original file line number Diff line number Diff line change 66docker volume rm -f osdata || true
77docker volume rm -f dbdata || true
88# docker image rm 127.0.0.1:5000/openstudio-server -f
9- docker build . -t=" 127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.5.0-rc2
9+ docker build . -t=" 127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.5.0
1010docker push 127.0.0.1:5000/openstudio-server
1111cd docker/R
1212# docker image rm 127.0.0.1:5000/openstudio-rserve -f
Original file line number Diff line number Diff line change @@ -37,6 +37,6 @@ module OpenstudioServer
3737 VERSION = '3.5.0' . freeze
3838 # format should be ^.*\-{1}[a-z]+[0-9]+
3939 # for example: -rc1, -beta6, -customusecase0
40- VERSION_EXT = '-rc2 ' . freeze # with preceding - or +
41- OS_SHA = 'd92288ec37 ' . freeze
40+ VERSION_EXT = '' . freeze # with preceding - or +
41+ OS_SHA = '7b14ce1588 ' . freeze
4242end
You can’t perform that action at this time.
0 commit comments