-
Notifications
You must be signed in to change notification settings - Fork 21
107 lines (95 loc) · 2.91 KB
/
build.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
name: Build
# This workflow is triggered on pushes to the repository.
on: push
env:
BUILD_TYPE: Release
jobs:
build:
name: ${{matrix.config.name}}
runs-on: ${{matrix.config.os}}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Ubuntu GCC", artifact: "qi-linux.tar.gz",
os: ubuntu-22.04,
cc: "gcc-11", cxx: "g++-11"
}
- {
name: "macOS", artifact: "qi-macos.tar.gz",
os: macos-12,
cc: "clang", cxx: "clang++"
}
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0
- name: Install Build Tools
shell: bash
run: |
if [ "${{runner.os}}" == "macOS" ]; then
brew install gnu-tar automake autoconf autoconf-archive
else
sudo apt-get update
sudo apt-get install automake autoconf autoconf-archive
fi
- name: Restore vcpkg binary cache
id: cache
uses: actions/cache@v3
with:
path: ~/.cache/vcpkg/
key: ${{runner.os}}-${{hashFiles( 'vcpkg.json' ) }}-${{hashFiles( '.git/modules/cmake/HEAD' )}}-vcpkg-cache
- name: Build
shell: bash
env:
CC: ${{matrix.config.cc}}
CXX: ${{matrix.config.cxx}}
run: |
TC="${{github.workspace}}/cmake/toolchain.cmake"
export VCPKG_OVERLAY_TRIPLETS="${{github.workspace}}/cmake/triplets"
export FLAGS="ci"
cd ${{github.workspace}}
cmake -B build -S . \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_TOOLCHAIN_FILE="$TC"
cmake --build build
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10
- name: Prepare Python
run: |
python -m pip install --upgrade pip
pip install nipype
pip install -e ./Python/
shell: bash
- name: Run Tests
working-directory: ./Python/Tests
shell: bash
run: |
if [ "${{runner.os}}" != "macOS" ]; then # MacOS runners do not have AVX2
export PATH="$PWD/../../build/Source:$PATH"; python -m unittest discover
fi
- name: Tarball
run: |
cd ${{github.workspace}}
mv ./build/qi ./
ALL="qi"
if [ "${{runner.os}}" == "macOS" ]; then
echo "Using GNU tar"
gtar -cvzf ${{matrix.config.artifact}} $ALL
else
echo "Using system tar"
tar -cvzf ${{matrix.config.artifact}} $ALL
fi
shell: bash
- name: Release
if: contains(github.ref, 'tags/v')
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: ${{github.workspace}}/${{matrix.config.artifact}}
artifactErrorsFailBuild: true
draft: true