Skip to content

Make pip wheel with Dakota+Carolina #9

Make pip wheel with Dakota+Carolina

Make pip wheel with Dakota+Carolina #9

on: [pull_request]
jobs:
build_wheels:
name: Build wheels
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build Linux Wheel
uses: docker://quay.io/pypa/manylinux2014_x86_64
with:
entrypoint: /bin/bash
args: -c
cp /github/workspace/dakota_manylinux_install_files/CMakeLists.txt /tmp
cp /github/workspace/dakota_manylinux_install_files/build_all_the_stuff.sh /tmp
cd /tmp
sh build_all_the_stuff.sh "python${{ matrix.python-version }}"
cp /tmp/Carolina/dist /github/workspace/dist
- name: Upload wheel as artifact
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.os }} Python ${{ matrix.python-version }} wheel
path: dist/*