Skip to content

Commit

Permalink
LOLA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Jun 24, 2024
1 parent b4e2a3b commit f0644f0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lola.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: LOLA

on:
push:

jobs:
mingw:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1.24dev']
abi: [cp310, cp311, cp312]
steps:
- uses: actions/checkout@v4
- name: Build
run: |
docker pull openturns/archlinux-mingw
docker run --rm -e MAKEFLAGS='-j2' -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/')
with:
files: openturns-${{ matrix.version }}-${{ matrix.abi }}-${{ matrix.abi }}-win_amd64.whl

0 comments on commit f0644f0

Please sign in to comment.