-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
142 additions
and
127 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
include: | ||
- local: 'ci/common-ci.yml' | ||
|
||
cpu clang15 cxx20 release deps: | ||
extends: .build_deps_common | ||
variables: | ||
EXTRA_APTGET: "clang-15 libomp-15-dev" | ||
COMPILER: clang@15 | ||
CXXSTD: 20 | ||
SPACK_ENVIRONMENT: ci/docker/release-cpu.yaml | ||
USE_MKL: "ON" | ||
BUILD_IMAGE: $CSCS_REGISTRY_PATH/cpu-clang15-20-release/build | ||
|
||
cpu clang15 cxx20 release build: | ||
extends: | ||
- .build_common | ||
- .build_for_daint-mc | ||
needs: | ||
- cpu clang15 cxx20 release deps | ||
variables: | ||
DEPLOY_IMAGE: $CSCS_REGISTRY_PATH/cpu-clang15-cxx20-release/deploy:$CI_COMMIT_SHA | ||
|
||
cpu clang15 cxx20 release test: | ||
extends: .run_common | ||
needs: | ||
- cpu clang15 cxx20 release build | ||
trigger: | ||
include: | ||
- artifact: pipeline.yml | ||
job: cpu clang15 cxx20 release 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
include: | ||
- local: 'ci/common-ci.yml' | ||
|
||
cpu clang15 stdexec release deps: | ||
extends: .build_deps_common | ||
variables: | ||
EXTRA_APTGET: "clang-15 libomp-15-dev" | ||
COMPILER: clang@15 | ||
CXXSTD: 20 | ||
USE_MKL: "ON" | ||
SPACK_ENVIRONMENT: ci/docker/release-cpu-stdexec.yaml | ||
BUILD_IMAGE: $CSCS_REGISTRY_PATH/cpu-clang15-stdexec-release/build | ||
|
||
cpu clang15 stdexec release build: | ||
extends: | ||
- .build_common | ||
- .build_for_daint-mc | ||
needs: | ||
- cpu clang15 stdexec release deps | ||
variables: | ||
DEPLOY_IMAGE: $CSCS_REGISTRY_PATH/cpu-clang15-stdexec-release/deploy:$CI_COMMIT_SHA | ||
|
||
cpu clang15 stdexec release test: | ||
extends: .run_common | ||
needs: | ||
- cpu clang15 stdexec release build | ||
trigger: | ||
include: | ||
- artifact: pipeline.yml | ||
job: cpu clang15 stdexec release 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
include: | ||
- local: 'ci/common-ci.yml' | ||
|
||
cpu clang18 release deps: | ||
extends: .build_deps_common | ||
variables: | ||
EXTRA_APTGET: "clang-18 libomp-18-dev" | ||
COMPILER: clang@18 | ||
USE_MKL: "ON" | ||
SPACK_ENVIRONMENT: ci/docker/release-cpu.yaml | ||
BUILD_IMAGE: $CSCS_REGISTRY_PATH/cpu-clang18-release/build | ||
|
||
cpu clang18 release build: | ||
extends: | ||
- .build_common | ||
- .build_for_daint-mc | ||
needs: | ||
- cpu clang18 release deps | ||
variables: | ||
DEPLOY_IMAGE: $CSCS_REGISTRY_PATH/cpu-clang18-release/deploy:$CI_COMMIT_SHA | ||
|
||
cpu clang18 release test: | ||
extends: .run_common | ||
needs: | ||
- cpu clang18 release build | ||
trigger: | ||
include: | ||
- artifact: pipeline.yml | ||
job: cpu clang18 release 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
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 |
---|---|---|
@@ -1,29 +1,30 @@ | ||
include: | ||
- local: 'ci/common-ci.yml' | ||
|
||
cpu gcc11 codecov deps: | ||
cpu gcc13 codecov deps: | ||
extends: .build_deps_common | ||
variables: | ||
COMPILER: gcc@11 | ||
COMPILER: gcc@13 | ||
SPACK_ENVIRONMENT: ci/docker/debug-cpu.yaml | ||
BUILD_IMAGE: $CSCS_REGISTRY_PATH/cpu-gcc11-codecov/build | ||
BUILD_IMAGE: $CSCS_REGISTRY_PATH/cpu-gcc13-codecov/build | ||
USE_CODECOV: "true" | ||
|
||
cpu gcc11 codecov build: | ||
cpu gcc13 codecov build: | ||
extends: | ||
- .build_common | ||
- .build_for_daint-mc | ||
needs: | ||
- cpu gcc11 codecov deps | ||
- cpu gcc13 codecov deps | ||
variables: | ||
DOCKERFILE: ci/docker/codecov.Dockerfile | ||
DEPLOY_IMAGE: $CSCS_REGISTRY_PATH/cpu-gcc11-codecov/deploy:$CI_COMMIT_SHA | ||
DEPLOY_IMAGE: $CSCS_REGISTRY_PATH/cpu-gcc13-codecov/deploy:$CI_COMMIT_SHA | ||
PIP_OPTS: "--break-system-packages" | ||
|
||
cpu gcc11 codecov test: | ||
cpu gcc13 codecov test: | ||
extends: .run_common | ||
needs: | ||
- cpu gcc11 codecov build | ||
- cpu gcc13 codecov build | ||
trigger: | ||
include: | ||
- artifact: pipeline.yml | ||
job: cpu gcc11 codecov build | ||
job: cpu gcc13 codecov 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
include: | ||
- local: 'ci/common-ci.yml' | ||
|
||
cpu gcc11 release deps: | ||
cpu gcc13 release deps: | ||
extends: .build_deps_common | ||
variables: | ||
COMPILER: gcc@11 | ||
COMPILER: gcc@13 | ||
USE_MKL: "ON" | ||
SPACK_ENVIRONMENT: ci/docker/release-cpu.yaml | ||
BUILD_IMAGE: $CSCS_REGISTRY_PATH/cpu-gcc11-release/build | ||
BUILD_IMAGE: $CSCS_REGISTRY_PATH/cpu-gcc13-release/build | ||
|
||
cpu gcc11 release build: | ||
cpu gcc13 release build: | ||
extends: | ||
- .build_common | ||
- .build_for_daint-mc | ||
needs: | ||
- cpu gcc11 release deps | ||
- cpu gcc13 release deps | ||
variables: | ||
DEPLOY_IMAGE: $CSCS_REGISTRY_PATH/cpu-gcc11-release/deploy:$CI_COMMIT_SHA | ||
DEPLOY_IMAGE: $CSCS_REGISTRY_PATH/cpu-gcc13-release/deploy:$CI_COMMIT_SHA | ||
|
||
cpu gcc11 release test: | ||
cpu gcc13 release test: | ||
extends: .run_common | ||
needs: | ||
- cpu gcc11 release build | ||
- cpu gcc13 release build | ||
trigger: | ||
include: | ||
- artifact: pipeline.yml | ||
job: cpu gcc11 release build | ||
job: cpu gcc13 release 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
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.