Skip to content

Add cuda workflow to test cuda developments on CI #96

Add cuda workflow to test cuda developments on CI

Add cuda workflow to test cuda developments on CI #96

Workflow file for this run

name: Wheel-pickled-installation
on:
workflow_dispatch:
inputs:
python_version:
required: true
type: string
ref:
required: false
type: string
check_run_id:
required: false
type: string
pr_repo:
required: false
type: string
push:
branches: [devel, main]
env:
COMMIT: ${{ inputs.ref || github.event.ref }}
PEM: ${{ secrets.BOT_PEM }}
GITHUB_RUN_ID: ${{ github.run_id }}
GITHUB_CHECK_RUN_ID: ${{ inputs.check_run_id }}
PR_REPO: ${{ inputs.pr_repo || github.repository }}
jobs:
Python_version_picker:
runs-on: ubuntu-latest
if: github.event_name != 'push' || github.repository == 'pyccel/pyccel-cuda'
outputs:
python_version: ${{ steps.set-python_version.outputs.python_version }}
steps:
- if: github.event_name == 'push'
run: |
echo "version=3.9" >> $GITHUB_ENV
shell: bash
- id: dispatch-matrix
if: github.event_name == 'workflow_dispatch'
run: |
echo "version=${{ inputs.python_version }}" >> $GITHUB_ENV
shell: bash
- id: set-python_version
run: |
echo "python_version=$version" >> $GITHUB_OUTPUT
shell: bash
Wheel-pickled-installation:
runs-on: ubuntu-latest
name: Deploy tests
needs: Python_version_picker
steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.COMMIT }}
repository: ${{ env.PR_REPO }}
submodules: true
- name: Set up Python ${{ needs.Python_version_picker.outputs.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ needs.Python_version_picker.outputs.python_version }}
- name: "Setup"
if: github.event_name != 'push'
id: token
run: |
pip install jwt requests
python ci_tools/setup_check_run.py pickle_wheel
- name: Install dependencies
uses: ./.github/actions/linux_install
- name: Install Pyccel from wheel
id: pickle
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade build
python -m build
python -m pip install dist/*.whl
shell: bash
- name: Check for existence of pickled files
id: pickle_check
uses: ./.github/actions/check_for_pickled
- name: Check for STC installation
id: stc_check
uses: ./.github/actions/check_for_stc
- name: Check for gFTL installation
id: gFTL_check
uses: ./.github/actions/check_for_gftl
- name: "Post completed"
if: always() && github.event_name != 'push'
run: |
python ci_tools/basic_json_check_output.py --statuses ${{ steps.pickle.outcome }} ${{ steps.pickle_check.outcome }} ${{ steps.stc_check.outcome }} ${{ steps.gFTL_check.outcome}} --reasons "Installation failed." "Pickled files were not found in installaion." "STC was not found during installation." "gFTL was not found during installation."
python ci_tools/complete_check_run.py ${{ steps.pickle.outcome }} ${{ steps.pickle_check.outcome }} ${{ steps.stc_check.outcome }} ${{ steps.gFTL_check.outcome}}