wip
Some checks failed
CI Beamline / test (push) Failing after 26s
CI Beamline / test (pull_request) Failing after 26s

This commit is contained in:
2025-06-25 20:33:08 +02:00
parent 3f64d6efc1
commit c893b4a749

View File

@ -45,20 +45,20 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
repository: bec/phoenix_bec repository: bec/phoenix_bec
ref: ${{ inputs.BEC_PLUGIN_REPO_BRANCH }} ref: ${{ inputs.BEC_PLUGIN_REPO_BRANCH || 'main' }}
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
# if: ( steps.plugin_checkout.outputs.skip_tests != 'true' ) # if: ( steps.plugin_checkout.outputs.skip_tests != 'true' )
with: with:
python-version: ${{ inputs.PYTHON_VERSION }} python-version: ${{ inputs.PYTHON_VERSION || '3.11' }}
- name: Checkout BEC Core - name: Checkout BEC Core
uses: actions/checkout@v4 uses: actions/checkout@v4
# if: ( steps.plugin_checkout.outputs.skip_tests != 'true' ) # if: ( steps.plugin_checkout.outputs.skip_tests != 'true' )
with: with:
repository: bec/bec repository: bec/bec
ref: ${{ inputs.BEC_CORE_BRANCH }} ref: ${{ inputs.BEC_CORE_BRANCH || 'main' }}
path: ./_checkout_/bec path: ./_checkout_/bec
- name: Checkout Ophyd Devices - name: Checkout Ophyd Devices
@ -66,7 +66,7 @@ jobs:
# if: ( steps.plugin_checkout.outputs.skip_tests != 'true' ) # if: ( steps.plugin_checkout.outputs.skip_tests != 'true' )
with: with:
repository: bec/ophyd_devices repository: bec/ophyd_devices
ref: ${{ inputs.OPHYD_DEVICES_BRANCH }} ref: ${{ inputs.OPHYD_DEVICES_BRANCH || 'main' }}
path: ./_checkout_/ophyd_devices path: ./_checkout_/ophyd_devices
- name: Checkout BEC Widgets - name: Checkout BEC Widgets
@ -74,7 +74,7 @@ jobs:
# if: ( steps.plugin_checkout.outputs.skip_tests != 'true' ) # if: ( steps.plugin_checkout.outputs.skip_tests != 'true' )
with: with:
repository: bec/bec_widgets repository: bec/bec_widgets
ref: ${{ inputs.BEC_WIDGETS_BRANCH }} ref: ${{ inputs.BEC_WIDGETS_BRANCH || 'main' }}
path: ./_checkout_/bec_widgets path: ./_checkout_/bec_widgets
- name: Install dependencies - name: Install dependencies