Skip to content

Commit

Permalink
No need to test in mini images
Browse files Browse the repository at this point in the history
  • Loading branch information
jbigot committed Sep 5, 2024
1 parent b942d29 commit 835e0ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/validate_in_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,12 @@ jobs:
version: ['latest', 'oldest']
compiler: ['gcc', 'clang']
mpi: ['openmpi','mpich']
variant: ['mini', 'all']
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
env:
VERSION: ${{ matrix.version }}
COMPILER: ${{ matrix.compiler }}
MPI: ${{ matrix.mpi }}
VARIANT: ${{ matrix.variant }}
run: ./tests/test_install_in_docker
2 changes: 1 addition & 1 deletion tests/spack_install_pdi
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
echo -e "\n\n******* Adding required spack repositories *******\n"
if [ -e ${SPACK_ROOT}/var/spack/repos/pdi ]
then
spack repo rm ${SPACK_ROOT}/var/spack/repos/pdi || true
spack repo rm ${SPACK_ROOT}/var/spack/repos/pdi &>/dev/null || true
fi
spack repo add "$(dirname "$(dirname "$0")")"

Expand Down
2 changes: 1 addition & 1 deletion tests/test_install_in_docker
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COMPILER="${COMPILER:-gcc}"
# MPI implementation if not specified
MPI="${MPI:-openmpi}"
# libraries included if not specified
VARIANT="${LEVEL:-all}"
VARIANT="${VARIANT:-all}"

echo " ** You can set the following environment variables:"
echo "VERSION(oldest|latest)=${VERSION}"
Expand Down

0 comments on commit 835e0ed

Please sign in to comment.