forked from opencor/libopencor
-
Notifications
You must be signed in to change notification settings - Fork 0
188 lines (186 loc) · 6.46 KB
/
cd.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
name: CD
on:
push:
# branches: [ main ]
release:
types: [ created ]
workflow_dispatch:
jobs:
# libraries:
# name: ${{ matrix.name }}
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# include:
# - name: 'Windows static library (Intel)'
# os: windows-latest
# arch: amd64
# shared_libs: OFF
# - name: 'Windows shared library (Intel)'
# os: windows-latest
# arch: amd64
# shared_libs: ON
# - name: 'Windows static library (ARM)'
# os: windows-latest
# arch: amd64_arm64
# shared_libs: OFF
# - name: 'Windows shared library (ARM)'
# os: windows-latest
# arch: amd64_arm64
# shared_libs: ON
# - name: 'Linux static library (Intel)'
# os: ubuntu-latest
# shared_libs: OFF
# - name: 'Linux shared library (Intel)'
# os: ubuntu-latest
# shared_libs: ON
# - name: 'Linux static library (ARM)'
# os: ubuntu-latest
# arch: arm
# shared_libs: OFF
# context: CC=aarch64-linux-gnu-gcc CXX=aarch64-linux-gnu-g++
# - name: 'Linux shared library (ARM)'
# os: ubuntu-latest
# arch: arm
# shared_libs: ON
# context: CC=aarch64-linux-gnu-gcc CXX=aarch64-linux-gnu-g++
# - name: 'macOS static library (Intel)'
# os: macos-13
# shared_libs: OFF
# - name: 'macOS shared library (Intel)'
# os: macos-13
# shared_libs: ON
# - name: 'macOS static library (ARM)'
# os: macos-latest
# shared_libs: OFF
# - name: 'macOS shared library (ARM)'
# os: macos-latest
# shared_libs: ON
# env:
# BUILDCACHE_ACCURACY: STRICT
# BUILDCACHE_COMPRESS_FORMAT: ZSTD
# BUILDCACHE_DEBUG: -1
# BUILDCACHE_LOG_FILE: ""
# steps:
# - name: Check out libOpenCOR
# uses: actions/checkout@v4
# - name: Install ARM compiler
# if: ${{ matrix.arch == 'arm' }}
# run: |
# sudo apt update
# sudo apt install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
# - name: Install CMake and Ninja
# uses: lukka/get-cmake@latest
# - name: Install buildcache
# uses: cscouto/buildcache-action@v1
# with:
# cache_key: libraries-${{ matrix.os }}-${{ matrix.shared_libs }}
# - name: Configure MSVC
# if: ${{ runner.os == 'Windows' }}
# uses: ilammy/msvc-dev-cmd@v1
# with:
# arch: ${{ matrix.arch }}
# - name: Configure libOpenCOR
# run: |
# mkdir build
# cd build
# ${{ matrix.context }} cmake -G Ninja -DBUILD_TYPE=Release -DCODE_ANALYSIS=OFF -DCODE_COVERAGE=OFF -DDOCUMENTATION=OFF -DJAVASCRIPT_BINDINGS=OFF -DMEMORY_CHECKS=OFF -DPYTHON_BINDINGS=OFF -DPYTHON_UNIT_TESTING=OFF -DSHARED_LIBS=${{ matrix.shared_libs }} -DUNIT_TESTING=OFF ..
# - name: Build libOpenCOR
# run: |
# cd build
# ninja
# - name: Package libOpenCOR
# run: |
# cd build
# cpack
# - name: Upload libOpenCOR artifacts
# if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
# uses: actions/upload-artifact@v4
# with:
# name: ${{ matrix.name }}
# path: ./build/libOpenCOR-*
# - name: Release libOpenCOR
# if: ${{ startsWith(github.ref, 'refs/tags/v') }}
# uses: softprops/action-gh-release@v2
# with:
# files: ./build/libOpenCOR-*
python_wheels:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
# - name: 'Windows Python wheels'
# os: windows-latest
- name: 'Linux Python wheels'
os: ubuntu-latest
# - name: 'macOS Python wheels (Intel)'
# os: macos-13
# - name: 'macOS Python wheels (ARM)'
# os: macos-latest
steps:
- name: Check out libOpenCOR
uses: actions/checkout@v4
- name: Configure MSVC
if: ${{ runner.os == 'Windows' }}
uses: ilammy/msvc-dev-cmd@v1
- name: Build Python wheels
uses: pypa/cibuildwheel@v2.21.3
env:
CIBW_ARCHS: auto64
CIBW_BUILD: 'cp*'
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=13.0
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_34
CIBW_SKIP: 'cp36* cp37* cp38* *musllinux*'
- name: Upload Python wheel artifacts
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
path: ./wheelhouse/*.whl
- name: Release Python wheels
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
uses: softprops/action-gh-release@v2
with:
files: ./wheelhouse/*.whl
# webassembly:
# name: WebAssembly
# runs-on: macos-latest
# env:
# BUILDCACHE_ACCURACY: STRICT
# BUILDCACHE_COMPRESS_FORMAT: ZSTD
# BUILDCACHE_DEBUG: -1
# BUILDCACHE_LOG_FILE: ""
# steps:
# - name: Check out libOpenCOR
# uses: actions/checkout@v4
# - name: Install CMake and Ninja
# uses: lukka/get-cmake@latest
# - name: Install buildcache
# uses: cscouto/buildcache-action@v1
# with:
# cache_key: webassembly
# - name: Install Emscripten
# run: brew install emscripten
# - name: Configure libOpenCOR
# run: |
# mkdir build
# cd build
# cmake -G Ninja -DBUILD_TYPE=Release -DCODE_ANALYSIS=OFF -DCODE_COVERAGE=OFF -DDOCUMENTATION=OFF -DJAVASCRIPT_BINDINGS=ON -DJAVASCRIPT_UNIT_TESTING=OFF -DMEMORY_CHECKS=OFF -DPYTHON_BINDINGS=OFF -DPYTHON_UNIT_TESTING=OFF -DSHARED_LIBS=OFF -DUNIT_TESTING=OFF ..
# - name: Build WebAssembly
# run: |
# cd build
# ninja
# - name: Upload WebAssembly artifact
# if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
# uses: actions/upload-artifact@v4
# with:
# name: WebAssembly
# path: ./build/libopencor-*
# - name: Release WebAssembly
# if: ${{ startsWith(github.ref, 'refs/tags/v') }}
# uses: softprops/action-gh-release@v2
# with:
# files: ./build/libopencor-*