Skip to content

Commit

Permalink
some gitlab fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgessinger committed Jan 29, 2025
1 parent 8ecb3f3 commit 6ac2b5a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,6 @@ linux_physmon:
.linux_ubuntu_extra:
variables:
INSTALL_DIR: ${CI_PROJECT_DIR}/install
CXX: g++

stage: build

Expand All @@ -378,14 +377,13 @@ linux_physmon:
- git checkout $HEAD_SHA
- git submodule init
- git submodule update
- source CI/dependencies/setup.sh -c ${COMPILER}
- source CI/dependencies/setup.sh -c ${CXX}

- cd ..
- mkdir build
- >
cmake -B build -S src
--preset=gitlab-ci
-DCMAKE_CXX_COMPILER=${COMPILER}
-DCMAKE_CXX_STANDARD=${CXXSTD}
-DCMAKE_CXX_COMPILER=${CXX}
Expand All @@ -405,8 +403,8 @@ linux_physmon:
-GNinja
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_CXX_FLAGS=-Werror
-DCMAKE_CXX_COMPILER=${COMPILER}
-DCMAKE_CXX_STANDARD=${CXXSTD}
-DCMAKE_CXX_COMPILER=${CXX}
-DCMAKE_PREFIX_PATH="${INSTALL_DIR}"
# Downstream build
Expand All @@ -421,16 +419,15 @@ linux_physmon:
linux_ubuntu_2204:
extends: .linux_ubuntu_extra
variables:
CXX: g++
CXXSTD: 20
COMPILER: g++
image: registry.cern.ch/ghcr.io/acts-project/ubuntu2204:71

linux_ubuntu_2204_clang:
extends: .linux_ubuntu_extra
variables:
CXX: clang++
CXXSTD: 20
COMPILER: clang++
image: registry.cern.ch/ghcr.io/acts-project/ubuntu2204:71


Expand Down

0 comments on commit 6ac2b5a

Please sign in to comment.