Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Remove docker tag, restrict ExaTrkX build to big VMs #2579

Merged
merged 4 commits into from
Oct 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ build_exatrkx:
stage: build
image: ghcr.io/acts-project/ubuntu2004_exatrkx:v43
tags:
- docker
- large

cache:
key: ccache-exatrkx-$CI_COMMIT_REF_SLUG
paths:
- ${CI_PROJECT_DIR}/ccache_${CCACHE_KEY_SUFFIX}
- ${CI_PROJECT_DIR}/ccache

artifacts:
paths:
Expand Down Expand Up @@ -100,7 +100,10 @@ build_exatrkx:
-DACTS_EXATRKX_ENABLE_ONNX=ON
-DACTS_BUILD_EXAMPLES_PYTHON_BINDINGS=ON
-DACTS_ENABLE_LOG_FAILURE_THRESHOLD=ON

- ccache -z
- cmake --build build -- -j3
- ccache -s

test_exatrkx_unittests:
stage: test
Expand Down Expand Up @@ -134,8 +137,6 @@ test_exatrkx_python:
build_linux_ubuntu:
stage: build
image: ghcr.io/acts-project/ubuntu2204:v41
tags:
- docker

cache:
key: ccache-${CI_JOB_NAME_SLUG}-${HEAD_REF}-${CCACHE_KEY_SUFFIX}
Expand Down Expand Up @@ -188,8 +189,6 @@ linux_test_examples:
stage: test
image: ghcr.io/acts-project/ubuntu2204:v41
needs: [build_linux_ubuntu]
tags:
- docker

script:
- apt-get update && apt-get install -y git-lfs
Expand All @@ -216,8 +215,6 @@ linux_physmon:
stage: test
image: ghcr.io/acts-project/ubuntu2204:v41
needs: [build_linux_ubuntu]
tags:
- docker

artifacts:
when: always
Expand Down Expand Up @@ -256,8 +253,6 @@ linux_physmon:
INSTALL_DIR: ${CI_PROJECT_DIR}/install

stage: build
tags:
- docker

cache:
key: ccache-${CI_JOB_NAME_SLUG}-${HEAD_REF}-${CCACHE_KEY_SUFFIX}
Expand Down Expand Up @@ -343,7 +338,6 @@ linux_ubuntu_2204_clang:
image: ghcr.io/acts-project/${OS}-base:sha-ca76a1f2
stage: build
tags:
- docker
- cvmfs

variables:
Expand Down
Loading