From c4662e17396b77b7a9887aa8b23d2b3fa12acaec Mon Sep 17 00:00:00 2001 From: appel_c Date: Tue, 23 Sep 2025 23:20:09 -0500 Subject: [PATCH] wip add extra output jobs of logs --- .gitea/workflows/ci.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5947771..7623d33 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -64,6 +64,36 @@ jobs: chmod +x ./bec_shared_actions/give_runs_log.sh ./bec_shared_actions/give_runs_log.sh "outputs/checkout.log" + - name: Checkout BEC Core + run: | + chmod +x ./bec_shared_actions/give_runs_log.sh + ./bec_shared_actions/give_runs_log.sh "outputs/checkout_bec_core.log" + + - name: Checkout Ophyd Devices + run: | + chmod +x ./bec_shared_actions/give_runs_log.sh + ./bec_shared_actions/give_runs_log.sh "outputs/checkout_ophyd_devices.log" + + - name: Checkout BEC Widgets + run: | + chmod +x ./bec_shared_actions/give_runs_log.sh + ./bec_shared_actions/give_runs_log.sh "outputs/checkout_bec_widgets.log" + + - name: Install APT_PACKAGES + run: | + chmod +x ./bec_shared_actions/give_runs_log.sh + ./bec_shared_actions/give_runs_log.sh "outputs/install_apt_packages.log" + + - name: Install Python dependencies + run: | + chmod +x ./bec_shared_actions/give_runs_log.sh + ./bec_shared_actions/give_runs_log.sh "outputs/install_python_dependencies.log" + + - name: Run pytest for Plugin + run: | + chmod +x ./bec_shared_actions/give_runs_log.sh + ./bec_shared_actions/give_runs_log.sh "outputs/pytest_plugin.log" + # with: # ref: "${{ github.head_ref || github.sha }}" # - name: Checkout test-ci repo