f6ea56276f
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2.3.1 to 3.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](f382193329...0ebf233433
)
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
64 lines
2 KiB
YAML
64 lines
2 KiB
YAML
# 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 * * *'
|
|
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
|
|
|
|
# GitHub Action Limits
|
|
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
|
|
|
|
jobs:
|
|
install_gcc:
|
|
name: gcc with clang
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
|
- uses: actions/setup-python@0ebf233433c08fb9061af664d501c3f3ff0e9e20 # @v2
|
|
with:
|
|
python-version: 3.9
|
|
- name: spack install
|
|
run: |
|
|
. .github/workflows/install_spack.sh
|
|
# 9.2.0 is the latest version on which we apply homebrew patch
|
|
spack install -v --fail-fast gcc@11.2.0 %apple-clang
|
|
|
|
install_jupyter_clang:
|
|
name: jupyter
|
|
runs-on: macos-latest
|
|
timeout-minutes: 700
|
|
steps:
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
|
- uses: actions/setup-python@0ebf233433c08fb9061af664d501c3f3ff0e9e20 # @v2
|
|
with:
|
|
python-version: 3.9
|
|
- name: spack install
|
|
run: |
|
|
. .github/workflows/install_spack.sh
|
|
spack install -v --fail-fast py-jupyterlab %apple-clang
|
|
|
|
install_scipy_clang:
|
|
name: scipy, mpl, pd
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2
|
|
- uses: actions/setup-python@0ebf233433c08fb9061af664d501c3f3ff0e9e20 # @v2
|
|
with:
|
|
python-version: 3.9
|
|
- name: spack install
|
|
run: |
|
|
. .github/workflows/install_spack.sh
|
|
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
|