Skip to content

Make pip wheel with Dakota+Carolina #28

Make pip wheel with Dakota+Carolina

Make pip wheel with Dakota+Carolina #28

name: 🏎️ Make Wheels 🏎️
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
ls /github/workspace &&
cp /github/workspace/dakota_manylinux_install_files/CMakeLists.txt /tmp &&
cp /github/workspace/dakota_manylinux_install_files/build_all_the_stuff.sh /tmp &&
ls /tmp &&
cd /tmp &&
sh build_all_the_stuff.sh "python${{ matrix.python-version }}" &&
echo "Hello" &&
echo "test" >> /github/workspace/dist/test
- name: Upload wheel as artifact
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.os }} Python ${{ matrix.python-version }} wheel
path: dist/*