Skip to content

Commit 989cf0e

Browse files
committed
debugging
1 parent 0913e75 commit 989cf0e

File tree

2 files changed

+22
-19
lines changed

2 files changed

+22
-19
lines changed

.github/workflows/continuousIntegration.yml

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -89,64 +89,62 @@ jobs:
8989
fail-fast: false
9090
matrix:
9191
include:
92-
- name: ubuntu24-gcc11-dbg (ubuntu-24, gcc 11.4.0, Release)
93-
DOCKER_REPOSITORY: geosx/ubuntu:24.04-gcc
92+
- name: rocky-gcc-dbg (rockylinux8, gcc 14, Release)
93+
DOCKER_REPOSITORY: geosx/rockylinux:8-gcc
9494
RUNS_ON: ubuntu-24.04
9595
CMAKE_CXX_COMPILER: /usr/bin/g++
9696
CMAKE_C_COMPILER: /usr/bin/gcc
9797
CMAKE_BUILD_TYPE: Debug
9898

99-
- name: ubuntu24-gcc11-rel (ubuntu-24, gcc 11.4.0, Release)
100-
DOCKER_REPOSITORY: geosx/ubuntu:24.04-gcc
99+
- name: rocky-gcc-rel (rockylinux8, gcc 14, Release)
100+
DOCKER_REPOSITORY: geosx/rockylinux:8-gcc
101101
RUNS_ON: ubuntu-24.04
102102
CMAKE_CXX_COMPILER: /usr/bin/g++
103103
CMAKE_C_COMPILER: /usr/bin/gcc
104104
CMAKE_BUILD_TYPE: Release
105105

106-
- name: ubuntu24-clang18-dbg (ubuntu-24, clang-18.0.0, Debug)
107-
DOCKER_REPOSITORY: geosx/ubuntu:24.04-clang
106+
- name: rocky-clang-dbg (rockylinux8, clang-15, Debug)
107+
DOCKER_REPOSITORY: geosx/rockylinux:8-clang
108108
RUNS_ON: ubuntu-24.04
109109
CMAKE_CXX_COMPILER: /usr/bin/clang++
110110
CMAKE_C_COMPILER: /usr/bin/clang
111111
CMAKE_BUILD_TYPE: Debug
112112

113-
- name: ubuntu24-clang18-rel (ubuntu-24, clang-18.0.0, Release)
114-
DOCKER_REPOSITORY: geosx/ubuntu:24.04-clang
113+
- name: rocky-clang-rel (rockylinux8, clang-15, Release)
114+
DOCKER_REPOSITORY: geosx/rockylinux:8-clang
115115
RUNS_ON: ubuntu-24.04
116116
CMAKE_CXX_COMPILER: /usr/bin/clang++
117117
CMAKE_C_COMPILER: /usr/bin/clang
118118
CMAKE_BUILD_TYPE: Release
119-
120-
121-
- name: rocky-gcc-dbg (rockylinux8, gcc 14, Release)
122-
DOCKER_REPOSITORY: geosx/rockylinux:8-gcc
119+
120+
- name: ubuntu24-gcc11-dbg (ubuntu-24, gcc 11.4.0, Release)
121+
DOCKER_REPOSITORY: geosx/ubuntu:24.04-gcc
123122
RUNS_ON: ubuntu-24.04
124123
CMAKE_CXX_COMPILER: /usr/bin/g++
125124
CMAKE_C_COMPILER: /usr/bin/gcc
126125
CMAKE_BUILD_TYPE: Debug
127126

128-
- name: rocky-gcc-rel (rockylinux8, gcc 14, Release)
129-
DOCKER_REPOSITORY: geosx/rockylinux:8-gcc
127+
- name: ubuntu24-gcc11-rel (ubuntu-24, gcc 11.4.0, Release)
128+
DOCKER_REPOSITORY: geosx/ubuntu:24.04-gcc
130129
RUNS_ON: ubuntu-24.04
131130
CMAKE_CXX_COMPILER: /usr/bin/g++
132131
CMAKE_C_COMPILER: /usr/bin/gcc
133132
CMAKE_BUILD_TYPE: Release
134133

135-
- name: rocky-clang-dbg (rockylinux8, clang-15, Debug)
136-
DOCKER_REPOSITORY: geosx/rockylinux:8-clang
134+
- name: ubuntu24-clang18-dbg (ubuntu-24, clang-18.0.0, Debug)
135+
DOCKER_REPOSITORY: geosx/ubuntu:24.04-clang
137136
RUNS_ON: ubuntu-24.04
138137
CMAKE_CXX_COMPILER: /usr/bin/clang++
139138
CMAKE_C_COMPILER: /usr/bin/clang
140139
CMAKE_BUILD_TYPE: Debug
141140

142-
- name: rocky-clang-rel (rockylinux8, clang-15, Release)
143-
DOCKER_REPOSITORY: geosx/rockylinux:8-clang
141+
- name: ubuntu24-clang18-rel (ubuntu-24, clang-18.0.0, Release)
142+
DOCKER_REPOSITORY: geosx/ubuntu:24.04-clang
144143
RUNS_ON: ubuntu-24.04
145144
CMAKE_CXX_COMPILER: /usr/bin/clang++
146145
CMAKE_C_COMPILER: /usr/bin/clang
147146
CMAKE_BUILD_TYPE: Release
148147

149-
150148
- name: ubuntu24-gcc11-cuda12-rel (ubuntu-24, gcc 11.4.0, cuda-12.9.1, Release)
151149
DOCKER_REPOSITORY: geosx/ubuntu:24.04-gcc-cuda12.9
152150
RUNS_ON: streak2

scripts/ci_build_and_test.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ fi
1414
# but that would not have solved the problem for the TPLs (we would require extra action to copy them to the mount point).
1515
CONTAINER_NAME=hpcReact_build
1616

17+
set -x
18+
cat /etc/docker/daemon.json || echo "no mirror configured"
19+
docker info | grep -A2 Registry
20+
docker pull registry-1.docker.io/${DOCKER_REPOSITORY}
21+
1722
docker run \
1823
--rm \
1924
--volume=${BUILD_DIR}:${BUILD_DIR_MOUNT_POINT} \

0 commit comments

Comments
 (0)