fix: adjust script path
This commit is contained in:
@@ -34,8 +34,10 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
echo " --- Current Directory: $(pwd) --- "
|
echo " --- Current Directory: $(pwd) --- "
|
||||||
chmod +x ./checkout_repositories/run_ci.sh
|
SCRIPT_PATH="${{ github.action_path }}/run_ci.sh"
|
||||||
./checkout_repositories/run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" \
|
echo " --- Script Path: $SCRIPT_PATH --- "
|
||||||
|
chmod +x "$SCRIPT_PATH"
|
||||||
|
"$SCRIPT_PATH" "${{ inputs.PLUGIN_REPO_NAME }}" \
|
||||||
"${{ inputs.BEC_PLUGIN_REPO_BRANCH }}" \
|
"${{ inputs.BEC_PLUGIN_REPO_BRANCH }}" \
|
||||||
"${{ inputs.BEC_CORE_BRANCH }}" \
|
"${{ inputs.BEC_CORE_BRANCH }}" \
|
||||||
"${{ inputs.BEC_WIDGETS_BRANCH }}" \
|
"${{ inputs.BEC_WIDGETS_BRANCH }}" \
|
||||||
|
|||||||
@@ -9,13 +9,9 @@ inputs:
|
|||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
repository: bec/bec_shared_actions
|
|
||||||
ref: main
|
|
||||||
path: bec_shared_actions
|
|
||||||
- name: Install APT Packages
|
- name: Install APT Packages
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
chmod +x ./install_apt_packages/run_ci.sh
|
SCRIPT_PATH="${{ github.action_path }}/run_ci.sh"
|
||||||
./install_apt_packages/run_ci.sh "${{ inputs.APT_PACKAGES }}" \
|
chmod +x "$SCRIPT_PATH"
|
||||||
|
"$SCRIPT_PATH" "${{ inputs.APT_PACKAGES }}" \
|
||||||
@@ -13,11 +13,6 @@ inputs:
|
|||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
repository: bec/bec_shared_actions
|
|
||||||
ref: main
|
|
||||||
path: bec_shared_actions
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
@@ -25,5 +20,6 @@ runs:
|
|||||||
- name: Install Python Environment
|
- name: Install Python Environment
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
chmod +x ./install_python_env/run_ci.sh
|
SCRIPT_PATH="${{ github.action_path }}/run_ci.sh"
|
||||||
./install_python_env/run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}"
|
chmod +x "$SCRIPT_PATH"
|
||||||
|
"$SCRIPT_PATH" "${{ inputs.PLUGIN_REPO_NAME }}"
|
||||||
|
|||||||
@@ -9,13 +9,9 @@ inputs:
|
|||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
repository: bec/bec_shared_actions
|
|
||||||
ref: main
|
|
||||||
path: bec_shared_actions
|
|
||||||
- name: Run Pytest for Plugin
|
- name: Run Pytest for Plugin
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
chmod +x ./run_pytest_for_plugin/run_ci.sh
|
SCRIPT_PATH="${{ github.action_path }}/run_ci.sh"
|
||||||
./run_pytest_for_plugin/run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}"
|
chmod +x "$SCRIPT_PATH"
|
||||||
|
"$SCRIPT_PATH" "${{ inputs.PLUGIN_REPO_NAME }}"
|
||||||
Reference in New Issue
Block a user