Skip to content

Commit 530dfaa

Browse files
committed
Revert "Merge branch 'develop' into features/async-restart"
This reverts commit a418010, reversing changes made to 5d628ac.
1 parent 5ea7a5d commit 530dfaa

File tree

28 files changed

+877
-1586
lines changed

28 files changed

+877
-1586
lines changed

.github/containers/x86_64-gcc.12.2-mariadb-flux/Dockerfile

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/containers/x86_64-gcc.12.2-mariadb-flux/init.sql

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ jobs:
390390
-DWITH_ADIAK=Off \
391391
$GITHUB_WORKSPACE
392392
make
393-
393+
394394
build-rmq-tests:
395395
# The type of runner that the job will run on
396396
runs-on: ubuntu-latest
@@ -536,4 +536,3 @@ jobs:
536536
source /venv/bin/activate
537537
python -m unittest discover -s tests/AMSWorkflow -p "test_*.py" -v
538538
539-

.github/workflows/create-containers.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ jobs:
1010
matrix:
1111
target: [
1212
{ context: "x86_64-broadwell-gcc11.2.1", tag: "ams-ci-almalinux8" },
13-
{ context: "x86_64-broadwell-cuda11.6.1", tag: "ams-ci-cuda11.6.1" },
14-
{ context: "x86_64-gcc.12.2-mariadb-flux", tag: "ams-ci-flux-mariadb" }
13+
{ context: "x86_64-broadwell-cuda11.6.1", tag: "ams-ci-cuda11.6.1" }
1514
]
1615
steps:
1716
- name: Set up QEMU
@@ -41,7 +40,7 @@ jobs:
4140
sudo docker image prune --all --force
4241
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
4342
44-
- name: Build and push container
43+
- name: Build and push almalinux8 container
4544
uses: docker/build-push-action@v6
4645
with:
4746
platforms: linux/amd64

CMakeLists.txt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,10 @@ if (WITH_HDF5)
138138
find_package(HDF5 NAMES hdf5 COMPONENTS C static NO_DEFAULT_PATH PATHS ${AMS_HDF5_DIR} ${AMS_HDF5_DIR}/share/cmake)
139139
list(APPEND AMS_APP_LIBRARIES ${HDF5_C_STATIC_LIBRARY})
140140
message(STATUS "HDF5 Static Library : ${HDF5_C_STATIC_LIBRARY}")
141-
set(AMS_HDF5_LIB_TYPE "static")
142141
else()
143142
find_package(HDF5 NAMES hdf5 COMPONENTS C shared NO_DEFAULT_PATH PATHS ${AMS_HDF5_DIR} ${AMS_HDF5_DIR}/share/cmake)
144143
list(APPEND AMS_APP_LIBRARIES ${HDF5_C_SHARED_LIBRARY})
145144
message(STATUS "HDF5 Shared Library : ${HDF5_C_SHARED_LIBRARY}")
146-
set(AMS_HDF5_LIB_TYPE "shared")
147145
endif()
148146
list(APPEND AMS_APP_INCLUDES ${HDF5_INCLUDE_DIR})
149147
list(APPEND AMS_APP_DEFINES "-D__ENABLE_HDF5__")
@@ -161,13 +159,10 @@ if (WITH_RMQ)
161159
list(APPEND AMS_APP_INCLUDES ${amqpcpp_INCLUDE_DIR})
162160

163161
find_package(OpenSSL REQUIRED)
164-
set(AMS_OPENSSL_FOUND_ROOT "")
165162
if (OPENSSL_FOUND)
166163
list(APPEND AMS_APP_INCLUDES ${OPENSSL_INCLUDE_DIR})
167164
list(APPEND AMS_APP_LIBRARIES "${OPENSSL_LIBRARIES}")
168165
list(APPEND AMS_APP_LIBRARIES ssl)
169-
get_filename_component(AMS_OPENSSL_FOUND_ROOT "${OPENSSL_SSL_LIBRARY}" DIRECTORY)
170-
get_filename_component(AMS_OPENSSL_FOUND_ROOT "${AMS_OPENSSL_FOUND_ROOT}" DIRECTORY)
171166
message(STATUS "OpenSSL includes found: " ${OPENSSL_INCLUDE_DIR})
172167
message(STATUS "OpenSSL libraries found: " ${OPENSSL_LIBRARIES})
173168
else()
@@ -180,6 +175,7 @@ if (WITH_RMQ)
180175
list(APPEND AMS_APP_LIBRARIES amqpcpp event_pthreads event)
181176
endif() # WITH_RMQ
182177

178+
# ------------------------------------------------------------------------------
183179
if(NOT DEFINED UMPIRE_DIR)
184180
message(FATAL_ERROR "Missing required 'UMPIRE_DIR' variable pointing to an installed Umpire ${UMPIRE_DIR}")
185181
endif()
@@ -190,7 +186,6 @@ find_package(UMPIRE REQUIRED
190186
list(APPEND AMS_APP_LIBRARIES umpire)
191187
list(APPEND AMS_APP_INCLUDES ${UMPIRE_INCLUDE_DIR})
192188

193-
# ------------------------------------------------------------------------------
194189
find_package(nlohmann_json REQUIRED)
195190
list(APPEND AMS_APP_LIBRARIES nlohmann_json::nlohmann_json)
196191

cmake/AMSConfig.cmake.in

Lines changed: 0 additions & 79 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ classifiers = [
3232
"Programming Language :: Python :: 3 :: Only",
3333
]
3434
dependencies = [
35-
"h5py",
3635
"argparse",
37-
"SQLAlchemy",
38-
"mysql-connector-python",
36+
"kosh>=3.0.1",
3937
"pika>=1.3.0",
4038
"numpy>=1.2.0"
4139
]

0 commit comments

Comments
 (0)