Skip to content

Commit d1cdc34

Browse files
authored
Merge pull request #704 from NREL/update_361
updates for 3.6.1
2 parents 2027c70 + 4a81b81 commit d1cdc34

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

.github/workflows/openstudio-server-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on: [push, pull_request]
1010

1111
env:
1212
USE_TESTING_TIMEOUTS: "true"
13-
OPENSTUDIO_VERSION: 3.6.0
14-
OPENSTUDIO_VERSION_SHA: 860f5de185
13+
OPENSTUDIO_VERSION: 3.6.1
14+
OPENSTUDIO_VERSION_SHA: bb9481519e
1515
OPENSTUDIO_VERSION_EXT: ""
1616
DOCKER_COMPOSE_VERSION: 1.21.1
1717
BUNDLE_WITHOUT: native_ext
@@ -97,7 +97,7 @@ jobs:
9797
- name: docker
9898
shell: bash
9999
run: |
100-
export OPENSTUDIO_TAG=3.6.0
100+
export OPENSTUDIO_TAG=3.6.1
101101
sed -i -E "s/.git//g" .dockerignore
102102
docker volume create --name=osdata
103103
docker images --all

.github/workflows/security-scan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on: [push, pull_request]
1010

1111
env:
1212
USE_TESTING_TIMEOUTS: "true"
13-
OPENSTUDIO_VERSION: 3.6.0
14-
OPENSTUDIO_VERSION_SHA: 860f5de185
13+
OPENSTUDIO_VERSION: 3.6.1
14+
OPENSTUDIO_VERSION_SHA: bb9481519e
1515
OPENSTUDIO_VERSION_EXT: ""
1616
DOCKER_COMPOSE_VERSION: 1.21.1
1717
BUNDLE_WITHOUT: native_ext
@@ -31,7 +31,7 @@ jobs:
3131
- name: docker
3232
shell: bash
3333
run: |
34-
export OPENSTUDIO_TAG=3.6.0
34+
export OPENSTUDIO_TAG=3.6.1
3535
sed -i -E "s/.git//g" .dockerignore
3636
docker volume create --name=osdata
3737
docker images --all

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# NOTES: Currently this is one big dockerfile and non-optimal.
55

66
#may include suffix
7-
ARG OPENSTUDIO_VERSION=3.6.0
8-
FROM nrel/openstudio:3.6.0 as base
7+
ARG OPENSTUDIO_VERSION=3.6.1
8+
FROM nrel/openstudio:3.6.1 as base
99
MAINTAINER Nicholas Long [email protected]
1010

1111
ENV DEBIAN_FRONTEND=noninteractive

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ image: Visual Studio 2019
44

55
environment:
66
USE_TESTING_TIMEOUTS: "true"
7-
OPENSTUDIO_VERSION: 3.6.0
8-
OPENSTUDIO_VERSION_SHA: 860f5de185
7+
OPENSTUDIO_VERSION: 3.6.1
8+
OPENSTUDIO_VERSION_SHA: bb9481519e
99
OPENSTUDIO_VERSION_EXT: ""
1010
OPENSTUDIO_TEST_EXE: C:\projects\openstudio\bin\openstudio.exe
1111
BUILD_TYPE: "test"

ci/appveyor/setup.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set OS_INSTALL_NAME=OpenStudio-%OPENSTUDIO_VERSION%%OPENSTUDIO_VERSION_EXT%%%2B%
1010
echo Install name is %OS_INSTALL_NAME%
1111

1212
REM curl -SLO --insecure https://openstudio-ci-builds.s3-us-west-2.amazonaws.com/develop/%OS_INSTALL_NAME%
13-
curl -SLO --insecure https://github.com/NREL/OpenStudio/releases/download/v3.6.0/%OS_INSTALL_NAME%
13+
curl -SLO --insecure https://github.com/NREL/OpenStudio/releases/download/v3.6.1/%OS_INSTALL_NAME%
1414
dir .
1515
REM Install OpenStudio
1616
%OS_INSTALL_NAME% --script ci/appveyor/install-windows.qs

ci/github-actions/install_openstudio.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [ ! -z ${OPENSTUDIO_VERSION} ] && [ ! -z ${OPENSTUDIO_SHA} ]; then
1111
OPENSTUDIO_DOWNLOAD_FILENAME=OpenStudio-${OPENSTUDIO_VERSION}${OPENSTUDIO_VERSION_EXT}%2B${OPENSTUDIO_SHA}-Ubuntu-20.04-x86_64.deb
1212
echo "Installing OpenStudio ${OPENSTUDIO_DOWNLOAD_FILENAME}"
1313
#OPENSTUDIO_DOWNLOAD_BASE_URL=https://openstudio-ci-builds.s3-us-west-2.amazonaws.com/develop
14-
OPENSTUDIO_DOWNLOAD_BASE_URL=https://github.com/NREL/OpenStudio/releases/download/v3.6.0
14+
OPENSTUDIO_DOWNLOAD_BASE_URL=https://github.com/NREL/OpenStudio/releases/download/v3.6.1
1515
OPENSTUDIO_DOWNLOAD_URL=$OPENSTUDIO_DOWNLOAD_BASE_URL/$OPENSTUDIO_DOWNLOAD_FILENAME
1616

1717
# copying this from the docker-openstudio dockerfile

ci/github-actions/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ else
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
3939
#curl -SL --insecure https://openstudio-ci-builds.s3-us-west-2.amazonaws.com/develop/${OS_NAME}.tar.gz -o $OS_NAME_WITH_PLUS.tar.gz
40-
curl -SL --insecure https://github.com/NREL/OpenStudio/releases/download/v3.6.0/${OS_NAME}.tar.gz -o $OS_NAME_WITH_PLUS.tar.gz
40+
curl -SL --insecure https://github.com/NREL/OpenStudio/releases/download/v3.6.1/${OS_NAME}.tar.gz -o $OS_NAME_WITH_PLUS.tar.gz
4141
# OSX downloads with %2B but installs with + sign. These are the encoded chars in url strings.
4242
#hdiutil attach ${OS_NAME}.dmg
4343
#sed -i -e "s|REPLACEME|$HOME/openstudio|" ci/github-actions/install-mac.qs

local_setup_scripts/rebuild_sr.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sleep 5
66
docker volume rm -f osdata || true
77
docker 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.6.0
9+
docker build . -t="127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.6.1
1010
docker push 127.0.0.1:5000/openstudio-server
1111
cd docker/R/
1212
#docker image rm 127.0.0.1:5000/openstudio-rserve -f

local_setup_scripts/win64/rebuild_sr.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sleep 5
66
docker volume rm -f osdata || true
77
docker 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.6.0
9+
docker build . -t="127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.6.1
1010
docker push 127.0.0.1:5000/openstudio-server
1111
cd docker/R
1212
#docker image rm 127.0.0.1:5000/openstudio-rserve -f

local_setup_scripts/win64/rebuild_sr_no_rm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sleep 5
66
docker volume rm -f osdata || true
77
docker 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.6.0
9+
docker build . -t="127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.6.1
1010
docker push 127.0.0.1:5000/openstudio-server
1111
cd docker/R
1212
#docker image rm 127.0.0.1:5000/openstudio-rserve -f

0 commit comments

Comments
 (0)