Skip to content

Commit 42ed123

Browse files
committed
debugging
1 parent a4c8922 commit 42ed123

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/continuousIntegration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
lfs: false
226226
- name: run code coverage
227227
env:
228-
DOCKER_REPOSITORY: geosx/ubuntu:24.04-${{ needs.get_docker_image_tag_hash.outputs.DOCKER_IMAGE_TAG_HASH }}
228+
DOCKER_REPOSITORY: geosx/ubuntu:24.04-gcc-${{ needs.get_docker_image_tag_hash.outputs.DOCKER_IMAGE_TAG_HASH }}
229229
HOST_CONFIG: hostconfigs/environment.cmake
230230
CMAKE_CXX_COMPILER: /usr/bin/g++
231231
CMAKE_C_COMPILER: /usr/bin/gcc

scripts/ci_build_and_test_in_container.sh

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
env
33

44

5-
if [ -f /etc/os-release ]; then
6-
. /etc/os-release
7-
if [[ "$ID" == "ubuntu" || "$ID_LIKE" == "debian" ]]; then
8-
PACKAGE_MANAGER="apt"
9-
elif [[ "$ID" == "rhel" || "$ID_LIKE" == "rhel fedora rocky centos" ]]; then
10-
PACKAGE_MANAGER="yum"
11-
else
12-
echo "Unsupported OS: $ID"
13-
exit 1
14-
fi
15-
else
16-
echo "/etc/os-release not found. Unable to determine OS."
17-
exit 1
18-
fi
5+
# if [ -f /etc/os-release ]; then
6+
# . /etc/os-release
7+
# if [[ "$ID" == "ubuntu" || "$ID_LIKE" == "debian" ]]; then
8+
# PACKAGE_MANAGER="apt"
9+
# elif [[ "$ID" == "rhel" || "$ID_LIKE" == "rhel fedora rocky centos" ]]; then
10+
# PACKAGE_MANAGER="yum"
11+
# else
12+
# echo "Unsupported OS: $ID"
13+
# exit 1
14+
# fi
15+
# else
16+
# echo "/etc/os-release not found. Unable to determine OS."
17+
# exit 1
18+
# fi
1919

2020
# echo "Using package manager: $PACKAGE_MANAGER"
2121

0 commit comments

Comments
 (0)