Skip to content

Commit 12f6423

Browse files
climbfujistiggy87
andauthored
Update JEDI CI container GitHub actions (intel -> oneapi, add gcc-11) (#1625)
Remove configs/containers/docker-ubuntu-intel-impi.yaml and update .github/workflows/ubuntu-ci-containers-x86_64.yaml to build docker-ubuntu-gcc11-openmpi for DOW==5 Add external qt in configs/containers/docker-ubuntu-oneapi-impi.yaml --------- Co-authored-by: Steve Grace <[email protected]>
1 parent c575d02 commit 12f6423

File tree

3 files changed

+14
-387
lines changed

3 files changed

+14
-387
lines changed

.github/workflows/ubuntu-ci-containers-x86_64.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: ubuntu-ci-container-x86_64-build
22
on:
33
# Uncomment this to test for PRs (but do not submit)
4-
#pull_request:
4+
# pull_request:
55
# paths-ignore:
66
# - 'configs/sites/**'
77
# - 'doc/**'
88
# - '**.md'
99
# - '.github/ISSUE_TEMPLATE/*'
1010
# - '.gitignore'
11-
#
11+
1212
schedule:
1313
- cron: '0 8 * * *'
1414
workflow_dispatch:
@@ -57,11 +57,14 @@ jobs:
5757
if [[ $DOW == 1 || $DOW == 4 ]]; then
5858
export CONTAINER=${{ inputs.container || 'docker-ubuntu-clang-mpich' }}
5959
export SPECS=${{ inputs.specs || 'jedi-ci' }}
60-
elif [[ $DOW == 2 || $DOW == 5 ]]; then
60+
elif [[ $DOW == 2 ]]; then
6161
export CONTAINER=${{ inputs.container || 'docker-ubuntu-gcc-openmpi' }}
6262
export SPECS=${{ inputs.specs || 'jedi-ci' }}
63+
elif [[ $DOW == 5 ]]; then
64+
export CONTAINER=${{ inputs.container || 'docker-ubuntu-gcc11-openmpi' }}
65+
export SPECS=${{ inputs.specs || 'jedi-ci' }}
6366
elif [[ $DOW == 3 || $DOW == 6 ]]; then
64-
export CONTAINER=${{ inputs.container || 'docker-ubuntu-intel-impi' }}
67+
export CONTAINER=${{ inputs.container || 'docker-ubuntu-oneapi-impi' }}
6568
export SPECS=${{ inputs.specs || 'jedi-ci' }}
6669
else
6770
# Day 7: The Sabbath of rest (but do some house keeping later on)

0 commit comments

Comments
 (0)