Skip to content

Commit

Permalink
OS 3.9.0-rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlball committed Nov 12, 2024
1 parent 1f58e65 commit 561050e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/openstudio-server-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ on: [push, pull_request]
env:
USE_TESTING_TIMEOUTS: "true"
OPENSTUDIO_VERSION: 3.9.0
OPENSTUDIO_VERSION_SHA: cc1e0bbd6d
OPENSTUDIO_VERSION_EXT: "-rc2"
OPENSTUDIO_VERSION_SHA: a000d0ea29
OPENSTUDIO_VERSION_EXT: "-rc3"
DOCKER_COMPOSE_VERSION: 1.21.1
BUNDLE_WITHOUT: native_ext

Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
if: |
github.ref == 'refs/heads/master' ||
github.ref == 'refs/heads/develop' ||
github.ref == 'refs/heads/3.9.0-rc1'
github.ref == 'refs/heads/3.9.0-rc3'
shell: bash
run: ./docker/deployment/scripts/deploy_docker_github_actions.sh
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ on: [push, pull_request]
env:
USE_TESTING_TIMEOUTS: "true"
OPENSTUDIO_VERSION: 3.9.0
OPENSTUDIO_VERSION_SHA: cc1e0bbd6d
OPENSTUDIO_VERSION_EXT: "-rc2"
OPENSTUDIO_VERSION_SHA: a000d0ea29
OPENSTUDIO_VERSION_EXT: "-rc3"
DOCKER_COMPOSE_VERSION: 1.21.1
BUNDLE_WITHOUT: native_ext

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#may include suffix
ARG OPENSTUDIO_VERSION=3.9.0
FROM nrel/openstudio:dev-3.9.0-rc1 as base
FROM nrel/openstudio:dev-3.9.0-rc3 as base
MAINTAINER Nicholas Long [email protected]

ENV DEBIAN_FRONTEND=noninteractive
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ image: Visual Studio 2019
environment:
USE_TESTING_TIMEOUTS: "true"
OPENSTUDIO_VERSION: 3.9.0
OPENSTUDIO_VERSION_SHA: cc1e0bbd6d
OPENSTUDIO_VERSION_EXT: "-rc2"
OPENSTUDIO_VERSION_SHA: a000d0ea29
OPENSTUDIO_VERSION_EXT: "-rc3"
OPENSTUDIO_TEST_EXE: C:\projects\openstudio\bin\openstudio.exe
BUILD_TYPE: "test"
SKIP_COVERALLS: "true"
Expand Down
4 changes: 2 additions & 2 deletions local_setup_scripts/win64/rebuild_sr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ sleep 5
docker volume rm -f osdata || true
docker volume rm -f dbdata || true
docker image rm 127.0.0.1:5000/openstudio-server -f
docker build . -t="127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.8.0
docker build . -t="127.0.0.1:5000/openstudio-server" --build-arg OPENSTUDIO_VERSION=3.9.0
docker push 127.0.0.1:5000/openstudio-server
cd docker/R
docker image rm 127.0.0.1:5000/openstudio-rserve -f
docker build --no-cache . -t="127.0.0.1:5000/openstudio-rserve"
docker build . -t="127.0.0.1:5000/openstudio-rserve"
docker push 127.0.0.1:5000/openstudio-rserve
docker pull mongo:6.0.7
docker tag mongo:6.0.7 127.0.0.1:5000/mongo
Expand Down
4 changes: 2 additions & 2 deletions server/app/lib/openstudio_server/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ module OpenstudioServer
VERSION = '3.9.0'.freeze
# format should be ^.*\-{1}[a-z]+[0-9]+
# for example: -rc1, -beta6, -customusecase0
VERSION_EXT = '-rc2'.freeze # with preceding - or +
OS_SHA = 'cc1e0bbd6d'.freeze
VERSION_EXT = '-rc3'.freeze # with preceding - or +
OS_SHA = 'a000d0ea29'.freeze
end

0 comments on commit 561050e

Please sign in to comment.