diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-07-21 02:25:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-20 17:25:42 -0700 |
commit | ab32799b528ee159283c2c8773714e2b136499b3 (patch) | |
tree | 14daa7bfcf033e401bd4df8816bc8d1bdd18c180 /.github/workflows/install_spack.sh | |
parent | bd236918dd598e217ca553f1c24780a1411d1c98 (diff) | |
download | spack-ab32799b528ee159283c2c8773714e2b136499b3.tar.gz spack-ab32799b528ee159283c2c8773714e2b136499b3.tar.bz2 spack-ab32799b528ee159283c2c8773714e2b136499b3.tar.xz spack-ab32799b528ee159283c2c8773714e2b136499b3.zip |
Fix MacOS build tests (#17542)
* MacOS build tests
- Run on PR that modify the YAML file of the workflow
- Don't clone Spack, since we are in the Spack repo now
* Try to add opengl to configuration to build jupyter
* fixup
Diffstat (limited to '.github/workflows/install_spack.sh')
-rwxr-xr-x | .github/workflows/install_spack.sh | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/.github/workflows/install_spack.sh b/.github/workflows/install_spack.sh index 5efae461a5..bc1c5f43ec 100755 --- a/.github/workflows/install_spack.sh +++ b/.github/workflows/install_spack.sh @@ -1,5 +1,20 @@ #!/usr/bin/env sh -git clone https://github.com/spack/spack.git -echo -e "config:\n build_jobs: 2" > spack/etc/spack/config.yaml -. spack/share/spack/setup-env.sh -spack compilers +. share/spack/setup-env.sh +echo -e "config:\n build_jobs: 2" > etc/spack/config.yaml +spack config add "packages:all:target:[x86_64]" +# TODO: remove this explicit setting once apple-clang detection is fixed +cat <<EOF > etc/spack/compilers.yaml +compilers: +- compiler: + spec: apple-clang@11.0.3 + paths: + cc: /usr/bin/clang + cxx: /usr/bin/clang++ + f77: /usr/local/bin/gfortran-9 + fc: /usr/local/bin/gfortran-9 + modules: [] + operating_system: catalina + target: x86_64 +EOF +spack compiler info apple-clang +spack debug report |