|
|
|
|
@ -18,6 +18,7 @@ env:
|
|
|
|
|
TESTNAME: laravel-framework
|
|
|
|
|
TESTDIST: debian12
|
|
|
|
|
SHA: ${{ inputs.trigger && fromJson(inputs.trigger).event.workflow_run.head_sha || github.sha }}
|
|
|
|
|
BRANCH: ${{ inputs.trigger && fromJson(inputs.trigger).event.workflow_run.head_branch || github.ref_name }}
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
test:
|
|
|
|
|
@ -81,6 +82,7 @@ jobs:
|
|
|
|
|
# echo "Cache available '${BLDCACHE}'"
|
|
|
|
|
|
|
|
|
|
- name: Cache restore bin
|
|
|
|
|
if: ${{ env.BRANCH != 'none' }}
|
|
|
|
|
uses: actions/cache/restore@v4
|
|
|
|
|
with:
|
|
|
|
|
key: ${{ env.BLDCACHE }}
|
|
|
|
|
@ -101,7 +103,7 @@ jobs:
|
|
|
|
|
git rebase main -f -s recursive -X theirs
|
|
|
|
|
|
|
|
|
|
# use cached build
|
|
|
|
|
rm -rf ./proxysql && mv ../proxysql .
|
|
|
|
|
rm -rf ./proxysql && mv ../proxysql . || true
|
|
|
|
|
|
|
|
|
|
# extend timout
|
|
|
|
|
#cd test_laravel-framework
|
|
|
|
|
|