diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-07-31 13:46:44 +0200 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2020-08-03 17:23:10 -0700 |
commit | b1133fab22f969f99ea04f10a920485bd5ed6107 (patch) | |
tree | 838a10df4df2857be3d40274a41d12a3a8358a24 /.github | |
parent | 827ca72c2691622326d262f364448b8a715cd85b (diff) | |
download | spack-b1133fab22f969f99ea04f10a920485bd5ed6107.tar.gz spack-b1133fab22f969f99ea04f10a920485bd5ed6107.tar.bz2 spack-b1133fab22f969f99ea04f10a920485bd5ed6107.tar.xz spack-b1133fab22f969f99ea04f10a920485bd5ed6107.zip |
MacOS nightly builds: use Python 3.7 in CI
Nightly builds with MacOS started failing again
due to an upgrade of the default virtual environment
that now uses Python 3.8
This makes us hit #14102 and every build fails. This
commit should be reverted along with the fix to #14102.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/macos_python.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/macos_python.yml b/.github/workflows/macos_python.yml index 6134ef4cf2..feb9dcef04 100644 --- a/.github/workflows/macos_python.yml +++ b/.github/workflows/macos_python.yml @@ -25,6 +25,9 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.7 - name: spack install run: | . .github/workflows/install_spack.sh @@ -37,6 +40,9 @@ jobs: timeout-minutes: 700 steps: - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.7 - name: spack install run: | . .github/workflows/install_spack.sh @@ -48,6 +54,9 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.7 - name: spack install run: | . .github/workflows/install_spack.sh @@ -60,6 +69,9 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.7 - name: spack install run: | . .github/workflows/install_spack.sh |