-
Notifications
You must be signed in to change notification settings - Fork 22
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 #205 from LLNL/task/switch-ci-jobs-to-ruby
Switching from quartz to ruby in gitlab CI
- Loading branch information
Showing
5 changed files
with
40 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,36 +7,36 @@ | |
clang_10: | ||
variables: | ||
SPEC: " %[email protected]" | ||
extends: .build_and_test_on_quartz | ||
extends: .build_and_test_on_ruby | ||
|
||
clang_9: | ||
variables: | ||
SPEC: " %[email protected]" | ||
extends: .build_and_test_on_quartz | ||
extends: .build_and_test_on_ruby | ||
|
||
gcc_8_1_0: | ||
variables: | ||
SPEC: "%[email protected]" | ||
extends: .build_and_test_on_quartz | ||
extends: .build_and_test_on_ruby | ||
|
||
# icpc_18_0_2: | ||
# variables: | ||
# SPEC: " tests=none %[email protected]" | ||
# extends: .build_and_test_on_quartz | ||
# extends: .build_and_test_on_ruby | ||
|
||
icpc_19_1_0: | ||
variables: | ||
SPEC: "%[email protected]" | ||
extends: .build_and_test_on_quartz | ||
extends: .build_and_test_on_ruby | ||
|
||
# EXTRAS | ||
|
||
gcc_4_9_3: | ||
variables: | ||
SPEC: "%[email protected]" | ||
extends: .build_and_test_on_quartz | ||
extends: .build_and_test_on_ruby | ||
|
||
clang_10_develop_tpls: | ||
variables: | ||
SPEC: " %[email protected] ^umpire@develop ^raja@develop ^camp@main" | ||
extends: .build_and_test_on_quartz | ||
#clang_10_develop_tpls: | ||
# variables: | ||
# SPEC: " %[email protected] ^umpire@develop ^raja@develop ^camp@main" | ||
# extends: .build_and_test_on_ruby |
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 |
---|---|---|
|
@@ -33,20 +33,20 @@ Vetted specs | |
$ ls -c1 .gitlab/*jobs.yml | ||
.gitlab/lassen-jobs.yml | ||
.gitlab/quartz-jobs.yml | ||
.gitlab/ruby-jobs.yml | ||
CI contains jobs for quartz. | ||
CI contains jobs for ruby. | ||
|
||
.. code-block:: bash | ||
$ git grep -h "SPEC" .gitlab/quartz-jobs.yml | grep "gcc" | ||
$ git grep -h "SPEC" .gitlab/ruby-jobs.yml | grep "gcc" | ||
SPEC: "%[email protected]" | ||
SPEC: "%[email protected]" | ||
SPEC: "%[email protected]" | ||
SPEC: "%[email protected]" | ||
SPEC: "%[email protected]" | ||
We now have a list of the specs vetted on ``quartz``/``toss_3_x86_64_ib``. | ||
We now have a list of the specs vetted on ``ruby``/``toss_3_x86_64_ib``. | ||
|
||
.. note:: | ||
In practice, one should check if the job is not *allowed to fail*, or even deactivated. | ||
|
@@ -60,7 +60,7 @@ In CHAI, the Spack configuration for MacOS contains the default compilers depend | |
Using Uberenv to generate the host-config file | ||
---------------------------------------------- | ||
|
||
We have seen that we can safely use `[email protected]` on quartz. Let us ask for the default configuration first, and then ask for RAJA support and link to develop version of RAJA: | ||
We have seen that we can safely use `[email protected]` on ruby. Let us ask for the default configuration first, and then ask for RAJA support and link to develop version of RAJA: | ||
|
||
.. code-block:: bash | ||
|
@@ -71,7 +71,7 @@ Each will generate a CMake cache file, e.g.: | |
|
||
.. code-block:: bash | ||
hc-quartz-toss_3_x86_64_ib-clang@9.0.0-fjcjwd6ec3uen5rh6msdqujydsj74ubf.cmake | ||
hc-ruby-toss_3_x86_64_ib-clang@9.0.0-fjcjwd6ec3uen5rh6msdqujydsj74ubf.cmake | ||
Using host-config files to build CHAI | ||
------------------------------------- | ||
|
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