Skip to content

Commit d0ff152

Browse files
committed
Update gitlab CI
1 parent faa74d5 commit d0ff152

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

.gitlab/jobs/tioga.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ variables:
5252
parallel:
5353
matrix:
5454
- PYOMP_CI_PYTHON_VERSION:
55-
- "3.9"
5655
- "3.10"
5756
- "3.11"
5857
- "3.12"
58+
- "3.13"
5959

6060
build-and-test-tioga:
6161
extends: [.base-job, .python-variants]

buildscripts/gitlab/build-and-test.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,18 @@ TMPDIR=/tmp/pyomp/${CI_JOB_ID}
77
mkdir -p ${TMPDIR}
88
pushd ${TMPDIR}
99

10+
# Set the LLVM_VERSION to use.
11+
export LLVM_VERSION="15.0.7"
12+
1013
# Set the envs directory under the temporary directory.
1114
export CONDA_ENVS_DIRS="${TMPDIR}/_stage/miniconda3/envs"
1215

13-
# Install miniconda and llvmdev, clang14 environments.
16+
# Install miniconda and llvmdev environment.
1417
source ${CI_PROJECT_DIR}/buildscripts/cibuildwheel/setup-miniconda3.sh
1518

1619
# Export environment variables for building and testing.
17-
export LLVM_DIR="${CONDA_ENVS_DIRS}/llvmdev"
18-
export CLANG_TOOL="${CONDA_ENVS_DIRS}/clang14/bin/clang"
20+
export LLVM_DIR="${CONDA_ENVS_DIRS}/llvmdev-${LLVM_VERSION}"
21+
export PATH="${CONDA_ENVS_DIRS}/llvmdev-${LLVM_VERSION}/bin:${PATH}"
1922
export USE_CXX11_ABI="1"
2023
export PIP_NO_INPUT="1"
2124

0 commit comments

Comments
 (0)