Skip to content
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
21 changes: 18 additions & 3 deletions .gitlab/gitlab-ci-frontier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ stages:

.frontier-cmake-common:
rules:
- if: $CI_PIPELINE_SOURCE =~ /parent_pipeline|web/
- if: $CI_PIPELINE_SOURCE =~ /parent_pipeline|web/ && $MAINTAINANCE_PIPELINE == null
interruptible: true
variables:
CCACHE_BASEDIR: "/lustre/orion/ums029/scratch/"
Expand Down Expand Up @@ -169,7 +169,7 @@ build:frontier-cray:

.report-status:
rules:
- if: $CI_PIPELINE_SOURCE =~ /parent_pipeline|web/
- if: $CI_PIPELINE_SOURCE =~ /parent_pipeline|web/ && $MAINTAINANCE_PIPELINE == null
tags: [ shell ]
extends:
.frontier-common
Expand Down Expand Up @@ -205,7 +205,7 @@ success:
failure:
stage: post
rules:
- if: $CI_PIPELINE_SOURCE =~ /parent_pipeline|web/
- if: $CI_PIPELINE_SOURCE =~ /parent_pipeline|web/ && $MAINTAINANCE_PIPELINE == null
when: on_failure
variables:
STATUS_DESC: Pipeline failed
Expand Down Expand Up @@ -252,3 +252,18 @@ launch_pipelines:
include:
- artifact: generated_pipelines.yml
job: generate_pipelines

# Frontier runtime files for the runners occasionally get corrupted,
# Add manual job to remove it
wipe_runtime_directory:
stage: build
tags: [ shell ]
variables:
CUSTOM_CI_BUILDS_DIR: "/lustre/orion/ums029/scratch/ums029_auser/ci/adios2/runtime"
OLCF_SERVICE_ACCOUNT: "ums029_auser"
GIT_STRATEGY: none
rules:
- if: $CI_PIPELINE_SOURCE =~ /web/ && $MAINTAINANCE_PIPELINE != null
script:
- rm -vrf "${CUSTOM_CI_BUILDS_DIR}/"*
- chmod -vR g+rw "/lustre/orion/ums029/scratch/ums029_auser"
Loading