-
-
Notifications
You must be signed in to change notification settings - Fork 3
99 lines (89 loc) · 2.88 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
name: CI
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
branch: [devel]
target: [linux, macos, windows]
arch: [i386, amd64]
include:
- target: linux
builder: ubuntu-20.04
- target: macos
builder: macos-11
- target: windows
builder: windows-2019
- target: linux
arch: amd64
branch: devel
pushdocs: true
exclude:
- target: macos
arch: i386
name: "${{ matrix.target }} on ${{ matrix.arch }} (Nim ${{ matrix.branch }})"
runs-on: ${{ matrix.builder }}
defaults:
run:
shell: bash
working-directory: nim-sys
steps:
- name: Checkout
uses: actions/checkout@v4.1.0
with:
path: nim-sys
submodules: "recursive"
- name: Configure Nim for 32 bit GCC (Linux-only)
if: matrix.arch == 'i386' && runner.os == 'Linux'
run: |
sudo dpkg --add-architecture i386
sudo apt-fast update -qq
sudo DEBIAN_FRONTEND='noninteractive' apt-fast install \
--no-install-recommends -yq gcc-multilib g++-multilib
mkdir -p ~/.config/nim
cat << EOF > ~/.config/nim/nim.cfg
gcc.options.always %= "\${gcc.options.always} -m32"
gcc.cpp.options.always %= "\${gcc.cpp.options.always} -m32"
gcc.options.linker %= "\${gcc.options.linker} -m32"
gcc.cpp.options.linker %= "\${gcc.cpp.options.linker} -m32"
EOF
- name: Install 32bit MinGW (Windows-only)
if: matrix.arch == 'i386' && runner.os == 'Windows'
uses: egor-tensin/setup-mingw@v2
with:
platform: x86
static: 0
- name: Setup Nim
uses: alaviss/setup-nim@0.1.1
with:
path: nim
version: ${{ matrix.branch }}
architecture: ${{ matrix.arch }}
- name: Install dependencies
run: nimble install -y --depsOnly
- name: Run tests
run: nimble test
- name: Build docs
shell: bash
run: |
branch=${{ github.ref }}
branch=${branch##*/}
for i in src/sys/*.nim src/sys/ioqueue/*.nim; do
nimble doc --project --outdir:htmldocs \
'--git.url:https://github.com/${{ github.repository }}' \
'--git.commit:${{ github.sha }}' \
"--git.devel:$branch" \
"$i"
done
# Ignore failures for older Nim
cp htmldocs/{the,}index.html || true
- name: Publish docs
if: >
matrix.pushdocs && github.event_name == 'push' &&
github.ref == 'refs/heads/master'
uses: crazy-max/ghaction-github-pages@v3.0.0
with:
build_dir: nim-sys/htmldocs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}