Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions .github/workflows/TMP_OFF/ubuntu-ci-containers-x86_64.yaml
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I updated this workflow while at it, even though it is currently not used. An attempt to re-enable GitHub actions testing for containers failed miserably. Since the containers builds will see a major overhaul for spack-stack-2.1.0, I am not going to invest time to fix these CI container builds now.

Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
name: ubuntu-ci-container-x86_64-build
on:
# Uncomment this to test for PRs (but do not submit)
# pull_request:
# paths-ignore:
# - 'configs/sites/**'
# - 'doc/**'
# - '**.md'
# - '.github/ISSUE_TEMPLATE/*'
# - '.gitignore'

pull_request:
paths-ignore:
- 'configs/sites/**'
- '!configs/sites/tier2/*.default/*'
- '**.md'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- '.github/ISSUE_TEMPLATE/*'
- '.gitignore'
schedule:
- cron: '0 8 * * *'
workflow_dispatch:
Expand Down Expand Up @@ -55,12 +56,9 @@ jobs:
DOW=$(date +%u)
# Monday is 1 ... Sunday is 7
if [[ $DOW == 1 || $DOW == 4 ]]; then
export CONTAINER=${{ inputs.container || 'docker-ubuntu-clang-mpich' }}
export SPECS=${{ inputs.specs || 'jedi-ci' }}
elif [[ $DOW == 2 ]]; then
export CONTAINER=${{ inputs.container || 'docker-ubuntu-gcc-openmpi' }}
export SPECS=${{ inputs.specs || 'jedi-ci' }}
elif [[ $DOW == 5 ]]; then
elif [[ $DOW == 2 || $DOW == 5 ]]; then
export CONTAINER=${{ inputs.container || 'docker-ubuntu-gcc11-openmpi' }}
export SPECS=${{ inputs.specs || 'jedi-ci' }}
elif [[ $DOW == 3 || $DOW == 6 ]]; then
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ubuntu-ci-x86_64-gnu.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ubuntu-ci-c6a-x86_64-gnu-build
on:
pull_request:
paths-ignore:
- 'configs/sites/**'
- '!configs/sites/tier2/*.default/*'
- '**.md'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- '.github/ISSUE_TEMPLATE/*'
- '.gitignore'
workflow_dispatch:

concurrency:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ubuntu-ci-x86_64-oneapi-ifx.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ubuntu-ci-c6a-x86_64-oneapi-ifx-build
on:
pull_request:
paths-ignore:
- 'configs/sites/**'
- '!configs/sites/tier2/*.default/*'
- '**.md'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- '.github/ISSUE_TEMPLATE/*'
- '.gitignore'
workflow_dispatch:

concurrency:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ubuntu-ci-x86_64-oneapi.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ubuntu-ci-c6a-x86_64-oneapi-build
on:
pull_request:
paths-ignore:
- 'configs/sites/**'
- '!configs/sites/tier2/*.default/*'
- '**.md'
- '.github/CODEOWNERS'
- '.github/pull_request_template.md'
- '.github/ISSUE_TEMPLATE/*'
- '.gitignore'
workflow_dispatch:

concurrency:
Expand Down
5 changes: 4 additions & 1 deletion util/nrl/batch_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -569,10 +569,13 @@ for compiler in "${SPACK_STACK_BATCH_COMPILERS[@]}"; do
spack mirror create -a -d ${source_mirror_path}
fi

# Update local cargo mirror if requested
# Update local cargo mirror if requested; this can be
# unreliable, therefore ignore errors and proceed ...
if [[ "${update_cargo_mirror}" == "true"* ]]; then
set +e
echo "Updating local cargo mirror ..."
./util/fetch_cargo_deps.py
set -e
fi

# Install the environment with the correct flags
Expand Down