Skip to content

Commit

Permalink
Remove build_any job from ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
PProfizi committed Sep 21, 2023
1 parent d4bfeb1 commit e934fd8
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,34 +50,6 @@ jobs:
- name: "Run pre-commit"
run: pre-commit run --all-files --show-diff-on-failure

build_any:
name: "Build wheel any"
runs-on: ubuntu-latest
env:
platform: any
steps:
- uses: actions/checkout@v3

- name: "Install requirements"
run: pip install -r requirements/requirements_build.txt

- name: "Build the wheel"
shell: bash
id: wheel
run: |
python .ci/build_wheel.py -p any
cd dist
export name=`ls ansys_dpf_core*.whl`
echo ${name}
echo "wheel_name=${name[0]}" >> $GITHUB_OUTPUT
cd ..
- name: "Upload wheel any as artifact"
uses: actions/upload-artifact@v3
with:
name: ${{ steps.wheel.outputs.wheel_name }}
path: dist/${{ steps.wheel.outputs.wheel_name }}

build_linux1:
name: "Build linux1 wheel"
runs-on: ubuntu-latest
Expand Down

0 comments on commit e934fd8

Please sign in to comment.