Skip to content

Commit

Permalink
Release 1.2.2 (#759)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMarechal25 authored Feb 27, 2024
1 parent 7eb996e commit 5055517
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_oracle8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ jobs:
with:
submodules: true

- uses: ./.github/workflows/compile-gtest

- name: Checkout xpressmp linux
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -101,7 +103,6 @@ jobs:
uses: ./.github/workflows/compile-boost
with:
prefix: "../rte-antares-deps-Release/"

- name: Compile TBB
uses: ./.github/workflows/compile-tbb

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/centos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,13 @@ jobs:
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: $ZIP_NAME
name: ${{ env.ZIP_NAME}}
path: .

- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: $SINGLEFILE_NAME
name: ${{env.SINGLEFILE_NAME}}
path: .

- name: Upload Release Asset
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile-gtest/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
- id: build-gtest
shell: bash
run: |
source /opt/rh/devtoolset-10/enable
source /opt/rh/devtoolset-10/enable || source /opt/rh/gcc-toolset-10/enable || true
git clone -b v1.14.0 https://github.com/google/googletest.git
cd googletest
cmake3 -G"Unix Makefiles"
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ol8-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ jobs:
- name: Compile tbb
uses: ./.github/workflows/compile-tbb

- uses: ./.github/workflows/compile-gtest

- name: Install dependencies
run: |
pip3 install --upgrade pip
Expand Down Expand Up @@ -249,13 +251,13 @@ jobs:
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: $ZIP_NAME
name: ${{env.ZIP_NAME}}
path: .

- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: $SINGLEFILE_NAME
name: ${{env.SINGLEFILE_NAME}}
path: .

- name: Upload Release Asset
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,13 +256,13 @@ jobs:
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: $ZIP_NAME
name: ${{env.ZIP_NAME}}
path: .

- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: $SINGLEFILE_NAME
name: ${{env.SINGLEFILE_NAME}}
path: .

- name: Upload Release Asset
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
# Project configuration
# ===========================================================================

PROJECT(antaresXpansion VERSION 1.2.0)
PROJECT(antaresXpansion VERSION 1.2.2)
set(ANTARES_XPANSION_RC 0)

# ===========================================================================
Expand Down
4 changes: 2 additions & 2 deletions antares-version.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"antares_version": "8.8.0",
"antares_version": "8.8.3",
"antares_version_executable": "8.8",
"antares_xpansion_version": "1.2.0",
"antares_xpansion_version": "1.2.2",
"antares_deps_version": "2.0.7",
"minizip_ng_version": "3.0.6"
}
6 changes: 3 additions & 3 deletions cmake/dependencies/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ if (NOT antares-solver_FOUND)
set(CMAKE_ARGS "-DBUILD_UI=OFF -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE} -DDEPS_INSTALL_DIR=${DEPS_INSTALL_DIR} -DBUILD_not_system=OFF -DBUILD_ortools=ON ")

if (CMAKE_BUILD_TYPE STREQUAL "Debug")
set(ANTARES_BUILD_TYPE "debug")
set(ANTARES_BUILD_TYPE "Debug")
else ()

set(ANTARES_BUILD_TYPE "release")
set(ANTARES_BUILD_TYPE "Release")
endif ()
#Don't use CMAKE_BUILD_TYPE directly to support exotic build type in xpansion that may not exist in Simulator

build_git_dependency(
NAME
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Antares-Xpansion changelog
=================

v1.2.2 (02/2024)
--------------------------------------------------------

- Update Antares simulator to 8.8.3

v1.2 (10/2023)
--------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sonar.projectName=antares-xpansion
sonar.projectKey=AntaresSimulatorTeam_antares-xpansion
sonar.organization=antaressimulatorteam
sonar.projectVersion=1.2.0
sonar.projectVersion=1.2.2

# =====================================================
# Properties that will be shared amongst all modules
Expand Down

0 comments on commit 5055517

Please sign in to comment.