wip
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user