From 6a8dc8fb3182d953e71205751f14362747147d48 Mon Sep 17 00:00:00 2001 From: "Yngve S. Kristiansen" Date: Mon, 16 Oct 2023 13:08:35 +0200 Subject: [PATCH] Run docker via bash --- .github/workflows/bundle_with_dakota.yml | 32 ++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/bundle_with_dakota.yml 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/*