2020-05-06 18:51:29 +00:00
|
|
|
# These are nightly package tests for macOS
|
|
|
|
# focus areas:
|
|
|
|
# - initial user experience
|
|
|
|
# - scientific python stack
|
|
|
|
name: macOS builds nightly
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# nightly at 1 AM
|
|
|
|
- cron: '0 1 * * *'
|
2020-07-21 00:25:42 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
paths:
|
|
|
|
# Run if we modify this yaml file
|
|
|
|
- '.github/workflows/macos_python.yml'
|
|
|
|
# TODO: run if we touch any of the recipes involved in this
|
2020-05-06 18:51:29 +00:00
|
|
|
|
2022-06-08 22:46:46 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_number }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-05-06 18:51:29 +00:00
|
|
|
# GitHub Action Limits
|
|
|
|
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
install_gcc:
|
|
|
|
name: gcc with clang
|
2022-05-19 19:35:52 +00:00
|
|
|
if: github.repository == 'spack/spack'
|
2020-05-06 18:51:29 +00:00
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
2022-04-27 11:47:50 +00:00
|
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # @v2
|
2022-08-03 07:08:03 +00:00
|
|
|
- uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # @v2
|
2020-07-31 11:46:44 +00:00
|
|
|
with:
|
2020-10-12 04:16:00 +00:00
|
|
|
python-version: 3.9
|
2020-05-06 18:51:29 +00:00
|
|
|
- name: spack install
|
|
|
|
run: |
|
|
|
|
. .github/workflows/install_spack.sh
|
2020-07-21 00:25:42 +00:00
|
|
|
# 9.2.0 is the latest version on which we apply homebrew patch
|
2022-02-01 20:29:27 +00:00
|
|
|
spack install -v --fail-fast gcc@11.2.0 %apple-clang
|
2020-05-06 18:51:29 +00:00
|
|
|
|
|
|
|
install_jupyter_clang:
|
|
|
|
name: jupyter
|
2022-05-19 19:35:52 +00:00
|
|
|
if: github.repository == 'spack/spack'
|
2020-05-06 18:51:29 +00:00
|
|
|
runs-on: macos-latest
|
2020-05-09 21:49:56 +00:00
|
|
|
timeout-minutes: 700
|
2020-05-06 18:51:29 +00:00
|
|
|
steps:
|
2022-04-27 11:47:50 +00:00
|
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # @v2
|
2022-08-03 07:08:03 +00:00
|
|
|
- uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # @v2
|
2020-07-31 11:46:44 +00:00
|
|
|
with:
|
2020-10-12 04:16:00 +00:00
|
|
|
python-version: 3.9
|
2020-05-06 18:51:29 +00:00
|
|
|
- name: spack install
|
|
|
|
run: |
|
|
|
|
. .github/workflows/install_spack.sh
|
2020-09-29 00:43:56 +00:00
|
|
|
spack install -v --fail-fast py-jupyterlab %apple-clang
|
2020-05-06 18:51:29 +00:00
|
|
|
|
|
|
|
install_scipy_clang:
|
|
|
|
name: scipy, mpl, pd
|
2022-05-19 19:35:52 +00:00
|
|
|
if: github.repository == 'spack/spack'
|
2020-05-06 18:51:29 +00:00
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
2022-04-27 11:47:50 +00:00
|
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # @v2
|
2022-08-03 07:08:03 +00:00
|
|
|
- uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # @v2
|
2020-07-31 11:46:44 +00:00
|
|
|
with:
|
2020-10-12 04:16:00 +00:00
|
|
|
python-version: 3.9
|
2020-05-06 18:51:29 +00:00
|
|
|
- name: spack install
|
|
|
|
run: |
|
|
|
|
. .github/workflows/install_spack.sh
|
2020-07-21 00:25:42 +00:00
|
|
|
spack install -v --fail-fast py-scipy %apple-clang
|
|
|
|
spack install -v --fail-fast py-matplotlib %apple-clang
|
|
|
|
spack install -v --fail-fast py-pandas %apple-clang
|