From 73989e942e084f0f6a22e05ca248b802f6cd6bce Mon Sep 17 00:00:00 2001 From: psakievich Date: Wed, 21 Jun 2023 06:19:30 -0600 Subject: [PATCH 1/2] Fix docker CI issue --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d92e90714c..5cb8a3365c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -353,13 +353,14 @@ jobs: with: submodules: true - name: Test - working-directory: /spack-manager/environments/exawind run: | /bin/bash -c " \ source ${SPACK_MANAGER}/start.sh && \ + quick-create -n ci amr-wind+ascent+hdf5+hypre+masa+netcdf~shared@main && \ + spack cd -e && \ ln -s ${GITHUB_WORKSPACE} amr-wind && \ - source ${SPACK_MANAGER}/start.sh && \ - quick-develop -s amr-wind+ascent+hdf5+hypre+masa+netcdf~shared@main && \ + spack develop amr-wind@main && \ + spack manager external --latest --blacklist amr-wind gmake spack install && \ spack cd -b amr-wind && \ spack build-env amr-wind ctest -j $(nproc) -L unit --output-on-failure \ From 4724d2fb5ea4fb80e24bc90d1b09b91ab09effe3 Mon Sep 17 00:00:00 2001 From: psakievich Date: Wed, 21 Jun 2023 06:23:55 -0600 Subject: [PATCH 2/2] typo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5cb8a3365c..03b9f95148 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -356,7 +356,7 @@ jobs: run: | /bin/bash -c " \ source ${SPACK_MANAGER}/start.sh && \ - quick-create -n ci amr-wind+ascent+hdf5+hypre+masa+netcdf~shared@main && \ + quick-create -n ci -s amr-wind+ascent+hdf5+hypre+masa+netcdf~shared@main && \ spack cd -e && \ ln -s ${GITHUB_WORKSPACE} amr-wind && \ spack develop amr-wind@main && \