forked from ANTsX/ANTs
-
Notifications
You must be signed in to change notification settings - Fork 0
138 lines (136 loc) · 4.26 KB
/
release-binaries.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# Workflow adapted from https://gist.github.com/NickNaso/0d478f1481686d5bcc868cac06620a60
# build directly on supported runners: Ubuntu 18, Ubuntu 20, Mac OS 11
name: Native release binaries
# Controls when the action will run. Triggers the workflow on push
on:
release:
types: [created]
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Ubuntu-24.04-GCC",
os: ubuntu-24.04,
cc: "gcc",
cxx: "g++",
build_type: "Release",
generators: "Ninja"
}
- {
name: "Ubuntu-22.04-GCC",
os: ubuntu-22.04,
cc: "gcc",
cxx: "g++",
build_type: "Release",
generators: "Ninja"
}
- {
name: "Ubuntu-20.04-GCC",
os: ubuntu-20.04,
cc: "gcc",
cxx: "g++",
build_type: "Release",
generators: "Ninja"
}
- {
name: "Macos-14-clang",
os: macos-14,
cc: "clang",
cxx: "clang++",
build_type: "Release",
generators: "Ninja"
}
- {
name: "Macos-12-clang",
os: macos-12,
cc: "clang",
cxx: "clang++",
build_type: "Release",
generators: "Ninja"
}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Get ANTs version
run:
echo "ANTS_VERSION=${ANTS_TAG#v}" >> $GITHUB_ENV
env:
ANTS_TAG: ${{ github.ref_name }}
- name: Define env
run: |
echo github.event.action: ${{ github.event.action }}
echo github.event_name: ${{ github.event_name }}
echo "CC=${{ matrix.config.cc }}" >> $GITHUB_ENV
echo "CXX=${{ matrix.config.cxx }}" >> $GITHUB_ENV
echo "ARTIFACT=${{ runner.temp }}/ants-${{ env.ANTS_VERSION }}-${{ matrix.config.os }}-${{ runner.arch }}-${{ matrix.config.cc }}.zip" >> $GITHUB_ENV
- name: Install dependencies on ubuntu
if: startsWith(matrix.config.name, 'Ubuntu-')
run: |
sudo apt-get update
sudo apt-get install ninja-build cmake
ninja --version
cmake --version
gcc --version
- name: Install dependencies on macos
if: startsWith(matrix.config.os, 'Macos')
run: |
brew update
brew install cmake ninja
ninja --version
cmake --version
- name: Configure
shell: bash
working-directory: ${{ runner.temp }}
run: |
mkdir build
cd build
cmake \
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \
-G "${{ matrix.config.generators }}" \
-DBUILD_TESTING=ON \
-DRUN_SHORT_TESTS=ON \
-DRUN_LONG_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX:PATH=${{ runner.temp }}/install/ants-${{ env.ANTS_VERSION }} \
${GITHUB_WORKSPACE}
- name: Build
shell: bash
working-directory: ${{ runner.temp }}
run: |
cd build
cmake --build . --config ${{ matrix.config.build_type }} --parallel
- name: Test
shell: bash
working-directory: ${{ runner.temp }}
run: |
cd build/ANTS-build
ctest
- name: Install
shell: bash
working-directory: ${{ runner.temp }}
run: |
cd build/ANTS-build
cmake --install .
- name: Pack
shell: bash
working-directory: ${{ runner.temp }}
run: |
cd install
zip -r ${ARTIFACT} .
- name: Upload release asset
# Previously was using actions/upload-release-asset@v1 , but this had some
# errors with large files
uses: ncipollo/[email protected]
with:
allowUpdates: true
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
artifacts: "${{ env.ARTIFACT }}"
artifactContentType: application/zip
token: ${{ secrets.GITHUB_TOKEN }}