Skip to content

Commit 6bf1153

Browse files
committed
Fix baseline extension path in perf workflow
1 parent 68524ef commit 6bf1153

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/native-ast-perf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,14 +120,14 @@ jobs:
120120
- name: Benchmark — baseline native path (walk, no identity cache)
121121
working-directory: ../baseline/packages/mysql-on-sqlite
122122
run: |
123-
BASE_EXT="$(realpath ../packages/php-ext-wp-mysql-parser/target/release/libwp_mysql_parser.so)"
123+
BASE_EXT="$(realpath ../../packages/php-ext-wp-mysql-parser/target/release/libwp_mysql_parser.so)"
124124
php -d extension="$BASE_EXT" tests/tools/run-native-ast-walk-benchmark.php \
125125
| tee "$GITHUB_WORKSPACE/packages/mysql-on-sqlite/baseline-native-walk.txt"
126126
127127
- name: Benchmark — baseline native path (parse only)
128128
working-directory: ../baseline/packages/mysql-on-sqlite
129129
run: |
130-
BASE_EXT="$(realpath ../packages/php-ext-wp-mysql-parser/target/release/libwp_mysql_parser.so)"
130+
BASE_EXT="$(realpath ../../packages/php-ext-wp-mysql-parser/target/release/libwp_mysql_parser.so)"
131131
php -d extension="$BASE_EXT" tests/tools/run-native-ast-walk-benchmark.php --no-walk \
132132
| tee "$GITHUB_WORKSPACE/packages/mysql-on-sqlite/baseline-native-parse-only.txt"
133133

0 commit comments

Comments
 (0)