Skip to content

Commit

Permalink
Merge pull request #61 from USEPA/triplet_build
Browse files Browse the repository at this point in the history
Triplet build Fix Artifact Upload
  • Loading branch information
cbuahin committed Oct 23, 2023
2 parents 89110d7 + c752b67 commit 2b3c2e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ jobs:
with:
name: build-test-artifacts
path: |
build/*.zip
build/*.tar.gz
SRC_engines/build/*.zip
SRC_engines/build/*.tar.gz
3 changes: 1 addition & 2 deletions SRC_engines/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
# Sets the position independent code property for all targets
set(CMAKE_POSITION_INDEPENDENT_CODE ON)


# Sets default install prefix when cmakecache is initialized for first time
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX ${CMAKE_BINARY_DIR}/install CACHE PATH "..." FORCE)
Expand All @@ -31,7 +30,7 @@ set(CONFIG_DIST "cmake")
# option(BUILD_TESTS "Build component tests (requires Boost)" OFF)
option(BUILD_DEF "Builds library with def file interface" OFF)

# Added option to statically link libraries to address GitHub Ubuntu 20.04 symbol errors (issue #340)
# Added option to statically link libraries to address GitHub
option(BUILD_SHARED_LIBS "Build using shared libraries" ON)

add_subdirectory(src/solver)
Expand Down
6 changes: 3 additions & 3 deletions SRC_engines/src/solver/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
#define VERSION_MAJOR 2
#define VERSION_MINOR 2
#define VERSION_PATCH 0
#define GIT_HASH "1dd87ecdf7ea48729610355f7d087da064112ca5"
#define GIT_HASH "31eb962b1f7c65ac739899105d27617c2a94b7f3"

#define PLATFORM "Windows"
#define COMPILER "MSVC"
#define COMPILER_VERSION "19.37.32822.0"
#define BUILD_ID "2023-09-12T18:19:20Z"
#define COMPILER_VERSION "19.37.32824.0"
#define BUILD_ID "2023-10-23T18:30:13Z"


static inline int get_version_legacy() { \
Expand Down

0 comments on commit 2b3c2e9

Please sign in to comment.