diff --git a/.github/scripts/eval_run.py b/.github/scripts/eval_run.py index f423810f..4c6a5829 100644 --- a/.github/scripts/eval_run.py +++ b/.github/scripts/eval_run.py @@ -1,8 +1,14 @@ import requests import argparse import sys +import os def main(): + # TODO: remove this + print(f"Current working directory: {os.getcwd()}") + print(f"Script location: {os.path.abspath(__file__)}") + print(f"Directory contents: {os.listdir('.')}") + parser = argparse.ArgumentParser(description='Run evaluation benchmark') parser.add_argument('--label', required=True, help='Label for the evaluation run') parser.add_argument('--api-url', required=True, help='API URL') diff --git a/.github/workflows/eval-prod.yml b/.github/workflows/eval-prod.yml index 2b472bda..9c7d4031 100644 --- a/.github/workflows/eval-prod.yml +++ b/.github/workflows/eval-prod.yml @@ -19,6 +19,9 @@ jobs: runs-on: ubuntu-latest if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }} steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: 'Install dependencies' run: | python -m pip install --upgrade pip