-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #223 from LLNL/rc-2023.06.0
2023.06.0 Release
- Loading branch information
Showing
876 changed files
with
14,891 additions
and
13,051 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
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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# ------------------------------------------------------------------------------ | ||
# UPDATE TPL JOBS | ||
|
||
toss_update_tpls: | ||
extends: [.toss_resource2, .update_tpls, .merge_pr_rule] | ||
|
||
blueos_update_tpls: | ||
extends: [.blueos_resource2, .update_tpls, .merge_pr_rule] | ||
needs: [toss_update_tpls] | ||
|
||
# ------------------------------------------------------------------------------ | ||
# UPDATE PERM JOBS | ||
|
||
shared_tpls_update_permissions: | ||
extends: [.toss_resource_general, .toss_update_permissions, .merge_pr_rule] | ||
|
||
# ------------------------------------------------------------------------------ | ||
# PROD BUILD JOBS | ||
|
||
### TAG RELEASE ### | ||
toss_build_dev_pkg_release: | ||
extends: [.toss_resource_general, .gcc_mvapich2, .build_dev_pkg, .tag_release_rule] | ||
|
||
toss_install_dev_pkg_release: | ||
extends: [.toss_resource_general, .gcc_mvapich2, .install_dev_pkg, .tag_release_rule] | ||
needs: [toss_build_dev_pkg_release] | ||
|
||
toss_release_permissions: | ||
variables: | ||
ALIAS: $CI_COMMIT_TAG | ||
extends: [.toss_resource_general, .prod_permissions, .tag_release_rule] | ||
needs: [toss_install_dev_pkg_release] | ||
|
||
# ------------------------------------------------------------------------------ | ||
# CLEAN OLD BUILD DIRS | ||
|
||
cleanup_build_dirs: | ||
extends: [.clean_dirs] | ||
|
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,26 +1,25 @@ | ||
# ------------------------------------------------------------------------------ | ||
# BUILD JOBS | ||
|
||
toss_gcc_8_3_1_~mpi_build: | ||
extends: [.gcc_8_3_1_~mpi, .build_and_test, .toss_resource1] | ||
|
||
toss_gcc_8_3_1_~mpi_test: | ||
extends: [.gcc_8_3_1_~mpi, .run_ats, .toss_resource1] | ||
needs: [toss_gcc_8_3_1_~mpi_build] | ||
toss_gcc_~mpi_build: | ||
extends: [.gcc_~mpi, .build_and_test, .toss_resource1] | ||
|
||
toss_gcc_~mpi_test: | ||
extends: [.gcc_~mpi, .run_ats, .toss_resource1] | ||
needs: [toss_gcc_~mpi_build] | ||
|
||
|
||
blueos_cuda_11_gcc_8_3_1_~mpi_build: | ||
extends: [.cuda_11_gcc_8_3_1_~mpi, .build_and_test, .blueos_resource2] | ||
blueos_cuda_11_gcc_~mpi_build: | ||
extends: [.blueos_resource2, .cuda_11_gcc_~mpi, .build_and_test] | ||
|
||
blueos_cuda_11_gcc_8_3_1_~mpi_test: | ||
extends: [.cuda_11_gcc_8_3_1_~mpi, .run_ats, .blueos_resource2] | ||
needs: [blueos_cuda_11_gcc_8_3_1_~mpi_build] | ||
blueos_cuda_11_gcc_~mpi_test: | ||
extends: [.blueos_resource2, .cuda_11_gcc_~mpi, .run_ats] | ||
needs: [blueos_cuda_11_gcc_~mpi_build] | ||
|
||
|
||
blueos_gcc_8_3_1_~mpi_Debug_build: | ||
extends: [.gcc_8_3_1_~mpi_Debug, .build_and_test, .blueos_resource1] | ||
blueos_gcc_~mpi_Debug_build: | ||
extends: [.blueos_resource1, .gcc_~mpi_Debug, .build_and_test] | ||
|
||
blueos_gcc_8_3_1_~mpi_Debug_test: | ||
extends: [.gcc_8_3_1_~mpi_Debug, .run_ats, .blueos_resource1] | ||
needs: [blueos_gcc_8_3_1_~mpi_Debug_build] | ||
blueos_gcc_~mpi_Debug_test: | ||
extends: [.blueos_resource1, .gcc_~mpi_Debug, .run_ats] | ||
needs: [blueos_gcc_~mpi_Debug_build] |
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
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
Oops, something went wrong.