-
Notifications
You must be signed in to change notification settings - Fork 5
92 lines (90 loc) · 2.46 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: CI testing
on:
pull_request: {}
push:
branches:
- main
- release-candidate-*
tags:
- v*
workflow_dispatch:
inputs:
debug_enabled:
description: Run the build with SSH debugging enabled
type: boolean
required: false
default: false
defaults:
run:
shell: bash -el {0}
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
matrix:
include:
- script: static
- script: docs
- script: test
numpy-version: numpy==1.21.0
scipy-version: scipy==1.4.1
python-version: "3.8"
- script: test
python-version: "3.9"
- script: test-coverage
coverage-name: with-scipy
- script: test-coverage-no-scipy
coverage-name: no-scipy
fail-fast: false
env:
NUMPY: ${{ matrix.numpy-version || 'numpy' }}
SCIPY: ${{ matrix.scipy-version || 'scipy' }}
GH_TOKEN: ${{ secrets.PUBLIC_GH_TOKEN }}
steps:
- uses: nengo/nengo-bones/actions/setup@main
with:
python-version: ${{ matrix.python-version || '3.8' }}
- name: Install pandoc
if: ${{ matrix.script == 'docs' }}
run: |
micromamba install pandoc
- uses: nengo/nengo-bones/actions/generate-and-check@main
- uses: nengo/nengo-bones/actions/run-script@main
with:
name: ${{ matrix.script }}
- uses: actions/upload-artifact@v3
if: ${{ always() && matrix.coverage-name }}
with:
name: coverage-${{ matrix.coverage-name }}
path: .coverage
coverage:
runs-on: ubuntu-latest
timeout-minutes: 10
needs:
- test
if: ${{ always() }}
steps:
- uses: nengo/nengo-bones/actions/coverage-report@main
with:
min-coverage: 95
deploy:
needs:
- test
if: >-
startsWith(github.ref_name, 'release-candidate-') ||
(github.ref_type == 'tag' && startsWith(github.ref_name, 'v'))
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Write .pypirc to file
run: |
echo '${{ secrets.PYPIRC_FILE }}' > ~/.pypirc
- uses: actions/checkout@v3
- uses: nengo/nengo-bones/actions/setup@main
with:
python-version: '3.9'
- uses: nengo/nengo-bones/actions/generate-and-check@main
- uses: nengo/nengo-bones/actions/run-script@main
with:
name: deploy