From cb9da35d7016282fb84df2abaf4f84db6389f91b Mon Sep 17 00:00:00 2001 From: youben11 Date: Thu, 14 Nov 2024 15:19:06 +0100 Subject: [PATCH] chore(ci): remove useless workflow this one was merged inside the GPU release workflow --- .../concrete_python_test_gpu_wheel.yml | 62 ------------------- 1 file changed, 62 deletions(-) delete mode 100644 .github/workflows/concrete_python_test_gpu_wheel.yml diff --git a/.github/workflows/concrete_python_test_gpu_wheel.yml b/.github/workflows/concrete_python_test_gpu_wheel.yml deleted file mode 100644 index 6cd0e37e1..000000000 --- a/.github/workflows/concrete_python_test_gpu_wheel.yml +++ /dev/null @@ -1,62 +0,0 @@ -name: Concrete Python Test GPU Wheel - -on: - workflow_dispatch: - inputs: - instance_id: - description: 'Instance ID' - type: string - instance_image_id: - description: 'Instance AMI ID' - type: string - instance_type: - description: 'Instance product type' - type: string - runner_name: - description: 'Action runner name' - type: string - request_id: - description: 'Slab request ID' - type: string - user_inputs: - description: 'version of CP to test. It should be available in Zama PyPI' - required: true - type: string - -env: - CP_VERSION: ${{ inputs.user_inputs }} - -jobs: - test-linux-x86: - strategy: - matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] - fail-fast: false - runs-on: ${{ github.event.inputs.runner_name }} - steps: - - name: Setup Python - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 - with: - python-version: ${{ matrix.python-version }} - - - name: Install CP - run: pip install --pre --extra-index-url https://pypi.zama.ai/gpu/ "concrete-python==${{ env.CP_VERSION }}" - - - name: Checkout the repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - with: - path: repo - - - name: Test wheel - run: | - CONCRETE_PYTHON=$(pwd)/repo/frontends/concrete-python - - # Install extra requirements for tests - sudo apt update -y - sudo apt install -y graphviz libgraphviz-dev - pip install -r "${CONCRETE_PYTHON}"/requirements.extra-full.txt - pip install -r "${CONCRETE_PYTHON}"/requirements.dev.txt - - # Running tests - cd "${CONCRETE_PYTHON}" - make pytest-gpu