-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 1.3 KB
/
lola.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
name: LOLA
on:
push:
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1.24dev']
abi: [cp310]
steps:
- uses: actions/checkout@v4
- name: Build
run: |
docker pull openturns/manylinux2014_x86_64
docker run --rm -e MAKEFLAGS='-j4' -v `pwd`:/io openturns/manylinux2014_x86_64 /io/build-wheels-linux.sh jschueller lola ${{ matrix.abi }}
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/LOLA')
with:
files: wheelhouse/openturns-${{ matrix.version }}-${{ matrix.abi }}-${{ matrix.abi }}-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
mingw:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1.24dev']
abi: [cp310]
steps:
- uses: actions/checkout@v4
- name: Build
run: |
docker pull openturns/archlinux-mingw
docker run --rm -e MAKEFLAGS='-j4' -v `pwd`:/io openturns/archlinux-mingw /io/build-wheels-mingw.sh jschueller lola ${{ matrix.abi }}
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/LOLA')
with:
files: wheelhouse/openturns-${{ matrix.version }}-${{ matrix.abi }}-${{ matrix.abi }}-win_amd64.whl