-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disable llnl gitlab ci, failing bc adrien is out of quota (#737)
* disable llnl gitlab ci, failing bc adrien is out of quota * lets just say hi instead * Update .gitlab-ci.yml Co-authored-by: Adrien Bernede <[email protected]>
- Loading branch information
1 parent
188a271
commit f9b61cb
Showing
1 changed file
with
48 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,53 @@ | ||
############################################################################## | ||
# Copyright (c) 2014-20, Lawrence Livermore National Security, LLC and Conduit | ||
# Copyright (c) 2014-21, Lawrence Livermore National Security, LLC and Conduit | ||
# project contributors. See the COPYRIGHT file for details. | ||
############################################################################## | ||
|
||
variables: | ||
GIT_SUBMODULE_STRATEGY: recursive | ||
INSTALL_ROOT: ${CI_BUILDS_DIR}/${CI_PROJECT_NAME}/${CI_COMMIT_REF_SLUG}_${CI_PIPELINE_ID}/uberenv_libs | ||
SPACK_UPSTREAM: /usr/workspace/radiuss/spack-chain-parent/opt/spack | ||
SPACK_MIRROR: /usr/workspace/radiuss/mirrors/conduit | ||
|
||
stages: | ||
- deps | ||
- install | ||
|
||
######### | ||
# SCRIPTS | ||
######### | ||
|
||
# Define the generic script | ||
.build_script: | ||
build-job: | ||
stage: build | ||
tags: [quartz, shell] | ||
script: | ||
- scripts/ci/build-on-lc.sh | ||
|
||
# Build modes templates: | ||
# A job will have one on this template to pilot the behavior of def_uberenv_cmd | ||
.mode_deps: | ||
stage: deps | ||
variables: | ||
UBERENV_INSTALL: "OFF" | ||
|
||
.mode_install: | ||
stage: install | ||
variables: | ||
UBERENV_INSTALL: "ON" | ||
|
||
########## | ||
# INCLUDES | ||
########## | ||
|
||
# This is where templates and jobs are included | ||
include: | ||
- local: .gitlab/toolchains_templates.yml | ||
- local: .gitlab/quartz_templates.yml | ||
- local: .gitlab/quartz_jobs.yml | ||
- local: .gitlab/lassen_templates.yml | ||
- local: .gitlab/lassen_jobs.yml | ||
- echo "Hello!" | ||
|
||
# variables: | ||
# GIT_SUBMODULE_STRATEGY: recursive | ||
# INSTALL_ROOT: ${CI_BUILDS_DIR}/${CI_PROJECT_NAME}/${CI_COMMIT_REF_SLUG}_${CI_PIPELINE_ID}/uberenv_libs | ||
# SPACK_UPSTREAM: /usr/workspace/radiuss/spack-chain-parent/opt/spack | ||
# SPACK_MIRROR: /usr/workspace/radiuss/mirrors/conduit | ||
# | ||
# stages: | ||
# - deps | ||
# - install | ||
# | ||
# ######### | ||
# # SCRIPTS | ||
# ######### | ||
# | ||
# # Define the generic script | ||
# .build_script: | ||
# script: | ||
# - scripts/ci/build-on-lc.sh | ||
# | ||
# # Build modes templates: | ||
# # A job will have one on this template to pilot the behavior of def_uberenv_cmd | ||
# .mode_deps: | ||
# stage: deps | ||
# variables: | ||
# UBERENV_INSTALL: "OFF" | ||
# | ||
# .mode_install: | ||
# stage: install | ||
# variables: | ||
# UBERENV_INSTALL: "ON" | ||
# | ||
# ########## | ||
# # INCLUDES | ||
# ########## | ||
# | ||
# # This is where templates and jobs are included | ||
# include: | ||
# - local: .gitlab/toolchains_templates.yml | ||
# - local: .gitlab/quartz_templates.yml | ||
# - local: .gitlab/quartz_jobs.yml | ||
# - local: .gitlab/lassen_templates.yml | ||
# - local: .gitlab/lassen_jobs.yml |