diff --git a/.github/workflows/bundle_with_dakota.yml b/.github/workflows/bundle_with_dakota.yml new file mode 100644 index 00000000..d6e1415c --- /dev/null +++ b/.github/workflows/bundle_with_dakota.yml @@ -0,0 +1,32 @@ +name: 🏎️ Make Wheels 🏎️ + +on: [pull_request] + +jobs: + build_wheels: + name: 🛞 Build Wheels 🛞 + timeout-minutes: 60 + strategy: + fail-fast: true + 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 sh /github/workspace/dakota_manylinux_install_files/build_all_the_stuff_for_gh_runner.sh + + - name: Upload wheel as artifact + uses: actions/upload-artifact@v2 + with: + name: ${{ matrix.os }} Python ${{ matrix.python-version }} wheel + path: dist/*