From a7a6ce93a64f226586cd76237b7ff1c04e0e589f Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Tue, 13 Jan 2026 16:53:21 +0530 Subject: [PATCH] chore(ci): include v16 in patch test (#35885) Signed-off-by: Akhil Narang --- .github/workflows/_base-migration.yml | 14 ++++++++------ .github/workflows/server-tests.yml | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/_base-migration.yml b/.github/workflows/_base-migration.yml index ccabf8f058..25207095b5 100644 --- a/.github/workflows/_base-migration.yml +++ b/.github/workflows/_base-migration.yml @@ -117,6 +117,8 @@ jobs: fi echo "Setting up environment..." + + # Last python version in the array is the "default", so the 2nd parameter here is optional if rm -rf ${GITHUB_WORKSPACE}/env && python"$2" -m venv ${GITHUB_WORKSPACE}/env; then source ${GITHUB_WORKSPACE}/env/bin/activate pip install --quiet --upgrade pip @@ -154,17 +156,17 @@ jobs: # Save this script into a file for later use. declare -f update_to_version > "$RUNNER_TEMP/migrate" - - name: Update to v14 - run: | - source $RUNNER_TEMP/migrate - update_to_version 14 3.11 - exit $? - - name: Update to v15 run: | source $RUNNER_TEMP/migrate update_to_version 15 3.13 exit $? + + - name: Update to v16 + run: | + source $RUNNER_TEMP/migrate + update_to_version 16 + exit $? - name: Update to last commit run: | diff --git a/.github/workflows/server-tests.yml b/.github/workflows/server-tests.yml index d8358b11a2..71d3a359dd 100644 --- a/.github/workflows/server-tests.yml +++ b/.github/workflows/server-tests.yml @@ -57,7 +57,7 @@ jobs: needs: checkrun uses: ./.github/workflows/_base-migration.yml with: - db-artifact-url: https://frappeframework.com/files/v13-frappe.sql.gz + db-artifact-url: https://frappe.io/files/v14-frappe.sql.gz python-version: '3.14' node-version: 24 fake-success: ${{ needs.checkrun.outputs.build != 'strawberry' }}