Skip to content

Commit 6e36132

Browse files
committed
add blas/lapack in container. turn off ubi
1 parent 8d051ea commit 6e36132

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

.github/workflows/continuousIntegration.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ShivaCI
1+
name: HPCReactCI
22

33
on:
44
push:
@@ -89,33 +89,33 @@ jobs:
8989
fail-fast: false
9090
matrix:
9191
include:
92-
- name: RHEL8.10-clang17-dbg (ubi8.10, clang-17.0.6, Debug)
93-
DOCKER_REPOSITORY: geosx/ubi:8.10
94-
RUNS_ON: ubuntu-22.04
95-
CMAKE_CXX_COMPILER: clang++
96-
CMAKE_C_COMPILER: clang
97-
CMAKE_BUILD_TYPE: Debug
92+
# - name: RHEL8.10-clang17-dbg (ubi8.10, clang-17.0.6, Debug)
93+
# DOCKER_REPOSITORY: geosx/ubi:8.10
94+
# RUNS_ON: ubuntu-22.04
95+
# CMAKE_CXX_COMPILER: clang++
96+
# CMAKE_C_COMPILER: clang
97+
# CMAKE_BUILD_TYPE: Debug
9898

99-
- name: RHEL8.10-clang17-rel (ubi8.10, clang-17.0.6, Release)
100-
DOCKER_REPOSITORY: geosx/ubi:8.10
101-
RUNS_ON: ubuntu-22.04
102-
CMAKE_CXX_COMPILER: clang++
103-
CMAKE_C_COMPILER: clang
104-
CMAKE_BUILD_TYPE: Release
99+
# - name: RHEL8.10-clang17-rel (ubi8.10, clang-17.0.6, Release)
100+
# DOCKER_REPOSITORY: geosx/ubi:8.10
101+
# RUNS_ON: ubuntu-22.04
102+
# CMAKE_CXX_COMPILER: clang++
103+
# CMAKE_C_COMPILER: clang
104+
# CMAKE_BUILD_TYPE: Release
105105

106-
- name: RHEL8.10-gcc13-dbg (ubi8.10, gcc 13.2.1, Debug)
107-
DOCKER_REPOSITORY: geosx/ubi:8.10
108-
RUNS_ON: ubuntu-22.04
109-
CMAKE_CXX_COMPILER: /opt/rh/gcc-toolset-13/root/bin/g++
110-
CMAKE_C_COMPILER: /opt/rh/gcc-toolset-13/root/bin/gcc
111-
CMAKE_BUILD_TYPE: Debug
106+
# - name: RHEL8.10-gcc13-dbg (ubi8.10, gcc 13.2.1, Debug)
107+
# DOCKER_REPOSITORY: geosx/ubi:8.10
108+
# RUNS_ON: ubuntu-22.04
109+
# CMAKE_CXX_COMPILER: /opt/rh/gcc-toolset-13/root/bin/g++
110+
# CMAKE_C_COMPILER: /opt/rh/gcc-toolset-13/root/bin/gcc
111+
# CMAKE_BUILD_TYPE: Debug
112112

113-
- name: RHEL8.10-gcc13-rel (ubi8.10, gcc 13.2.1, Release)
114-
DOCKER_REPOSITORY: geosx/ubi:8.10
115-
RUNS_ON: ubuntu-22.04
116-
CMAKE_CXX_COMPILER: /opt/rh/gcc-toolset-13/root/bin/g++
117-
CMAKE_C_COMPILER: /opt/rh/gcc-toolset-13/root/bin/gcc
118-
CMAKE_BUILD_TYPE: Release
113+
# - name: RHEL8.10-gcc13-rel (ubi8.10, gcc 13.2.1, Release)
114+
# DOCKER_REPOSITORY: geosx/ubi:8.10
115+
# RUNS_ON: ubuntu-22.04
116+
# CMAKE_CXX_COMPILER: /opt/rh/gcc-toolset-13/root/bin/g++
117+
# CMAKE_C_COMPILER: /opt/rh/gcc-toolset-13/root/bin/gcc
118+
# CMAKE_BUILD_TYPE: Release
119119

120120
- name: ubuntu22-gcc11-dbg (ubuntu-22, gcc 11.4.0, Release)
121121
DOCKER_REPOSITORY: geosx/ubuntu:22.04

scripts/ci_build_and_test_in_container.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fi
2020
echo "Using package manager: $PACKAGE_MANAGER"
2121

2222
if [ "$PACKAGE_MANAGER" == "apt" ]; then
23-
apt update && apt install -y blas lapack
23+
apt-get install libblas-dev liblapack-dev
2424
elif [ "$PACKAGE_MANAGER" == "yum" ]; then
2525
yum install -y blas lapack
2626
fi

0 commit comments

Comments
 (0)