File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 3030 if : github.event.action == 'opened' || github.event.action == 'synchronize'
3131 runs-on : ubuntu-latest
3232 steps :
33+ - name : Checkout testing SDK repo
34+ uses : actions/checkout@v5
35+ with :
36+ path : testing-sdk
37+
3338 - name : Set up Python
3439 uses : actions/setup-python@v6
3540 with :
7075 fi
7176
7277 # Update pyproject.toml to use local testing SDK (temporary, not committed)
73- echo "GITHUB_WORKSPACE: $GITHUB_WORKSPACE"
74- echo "Current directory: $(pwd)"
75- echo "Parent directory contents:"
76- ls -la ../
77- TESTING_SDK_PATH="../aws-durable-execution-sdk-python-testing"
78- sed -i.bak "s|aws-durable-execution-sdk-python-testing @ git+ssh://git@github.com/aws/aws-durable-execution-sdk-python-testing.git|aws-durable-execution-sdk-python-testing @ file://$PWD/${TESTING_SDK_PATH}|" pyproject.toml
78+ TESTING_SDK_PATH="$(realpath ../testing-sdk)"
79+ sed -i.bak "s|aws-durable-execution-sdk-python-testing @ git+ssh://git@github.com/aws/aws-durable-execution-sdk-python-testing.git|aws-durable-execution-sdk-python-testing @ file://${TESTING_SDK_PATH}|" pyproject.toml
7980 rm pyproject.toml.bak
8081
8182 # Generate new uv.lock with the specific testing SDK commit
You can’t perform that action at this time.
0 commit comments