-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (103 loc) · 3.08 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: unchained CI
on:
push:
paths:
- 'examples/**'
- 'src/**'
- 'tests/**'
- 'unchained.nimble'
- '.github/workflows/ci.yml'
pull_request:
paths:
- 'examples/**'
- 'src/**'
- 'tests/**'
- 'unchained.nimble'
- '.github/workflows/ci.yml'
jobs:
build:
strategy:
fail-fast: false
matrix:
#branch: [version-1-2, version-1-4, devel]
branch: [version-1-6, devel]
target: [linux, macos, windows]
include:
- target: linux
builder: ubuntu-latest
- target: macos
builder: macos-latest
- target: windows
builder: windows-latest
name: '${{ matrix.target }} (${{ matrix.branch }})'
runs-on: ${{ matrix.builder }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
path: unchained
- name: Setup Nim
uses: alaviss/[email protected]
with:
path: nim
version: ${{ matrix.branch }}
- name: Setup MSYS2 (Windows)
if: ${{matrix.target == 'windows'}}
uses: msys2/setup-msys2@v2
with:
path-type: inherit
update: true
install: base-devel git mingw-w64-x86_64-toolchain
- name: Install test dependencies (OSX)
if: ${{matrix.target == 'macos'}}
run: |
brew install imagemagick cairo
- name: Install test dependencies (Windows)
if: ${{matrix.target == 'windows'}}
shell: msys2 {0}
run: |
pacman -Syu --noconfirm
pacman -S --needed --noconfirm mingw-w64-x86_64-cairo
pacman -S --needed --noconfirm mingw-w64-x86_64-lapack
- name: Setup nimble & deps
shell: bash
run: |
cd unchained
nimble refresh -y
nimble install -y
nimble installTestDeps
- name: Run tests (Linux & Mac)
if: ${{matrix.target != 'windows'}}
shell: bash
run: |
cd unchained
nimble -y test
- name: Run tests (Windows)
if: ${{matrix.target == 'windows'}}
shell: msys2 {0}
run: |
cd unchained
nimble -y test
- name: Build docs
if: >
github.event_name == 'push' && github.ref == 'refs/heads/master' &&
matrix.target == 'linux' && matrix.branch == 'devel'
shell: bash
run: |
cd unchained
# **HAVE** to call `develop`, cuz we're getting screwed by
# logic otherwise
nimble develop -y
nimble gen_docs
# TODO: fix this, need to iterate over all files, do similar to arraymancer docs
# Ignore failures for older Nim
cp docs/{the,}index.html || true
- name: Publish docs
if: >
github.event_name == 'push' && github.ref == 'refs/heads/master' &&
matrix.target == 'linux' && matrix.branch == 'devel'
uses: crazy-max/ghaction-github-pages@v1
with:
build_dir: unchained/docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}