Skip to content

Commit 118a86c

Browse files
committed
Partly revert d039e32 (adding e2e to CI)
1 parent 582ef84 commit 118a86c

File tree

2 files changed

+0
-43
lines changed

2 files changed

+0
-43
lines changed

.gitlab-ci.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -201,15 +201,3 @@ pypicongpu-compiling-test:
201201
CMAKE_VERSION: '3.25'
202202
BOOST_VERSION: '1.75.0'
203203
PYTHON_COMPILING_TEST: 'ON'
204-
205-
pypicongpu-end-to-end-test:
206-
stage: test
207-
extends: .base_pypicongpu_compile_test
208-
variables:
209-
PIP_BREAK_SYSTEM_PACKAGES: 1
210-
CI_CONTAINER_NAME: "ubuntu24.04"
211-
PYTHON_VERSION: "3.11.*"
212-
CXX_VERSION: "g++-13"
213-
CMAKE_VERSION: "3.25"
214-
BOOST_VERSION: "1.75.0"
215-
PYTHON_END_TO_END_TEST: "ON"

share/ci/install/pypicongpu.sh

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -98,34 +98,3 @@ if [ ! -z ${PYTHON_COMPILING_TEST+x} ]; then
9898
# execute the compiling test
9999
python3 -m compiling -v
100100
fi
101-
102-
# openmpi is available without extra work
103-
if [ ! -z ${PYTHON_END_TO_END_TEST+x} ]; then
104-
export PIC_BACKEND=omp2b
105-
# setup cmake
106-
if [ ! -z ${CMAKE_VERSION+x} ]; then
107-
if agc-manager -e cmake@${CMAKE_VERSION} ; then
108-
export PATH=$(agc-manager -b cmake@${CMAKE_VERSION})/bin:$PATH
109-
else
110-
script_error "No implementation to install cmake ${CMAKE_VERSION}"
111-
fi
112-
else
113-
script_error "CMAKE_VERSION is not defined"
114-
fi
115-
116-
# setup boost
117-
if [ ! -z ${BOOST_VERSION+x} ]; then
118-
if agc-manager -e boost@${BOOST_VERSION} ; then
119-
export CMAKE_PREFIX_PATH=$(agc-manager -b boost@${BOOST_VERSION}):$CMAKE_PREFIX_PATH
120-
else
121-
script_error "No implementation to install boost ${BOOST_VERSION}"
122-
fi
123-
else
124-
script_error "BOOST_VERSION is not defined"
125-
fi
126-
127-
# set C++ compiler
128-
export CXX=$CXX_VERSION
129-
# execute the compiling test
130-
python3 -m end-to-end -v
131-
fi

0 commit comments

Comments
 (0)