Skip to content

Make pip wheel with Dakota+Carolina #18

Make pip wheel with Dakota+Carolina

Make pip wheel with Dakota+Carolina #18

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
cp /github/workspace/dakota_manylinux_install_files/CMakeLists.txt /tmp &&
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/*