Skip to content

Commit fc4e778

Browse files
committed
Merge branch 'main' into 9731-never
2 parents 26df7ba + 52e9a53 commit fc4e778

File tree

219 files changed

+9519
-5980
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

219 files changed

+9519
-5980
lines changed

.github/actions/build-pgo-wheel/action.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ outputs:
1414
runs:
1515
using: "composite"
1616
steps:
17-
- name: prepare self schema
18-
shell: bash
19-
# generate up front so that we don't have to do this inside the docker container
20-
run: uv run python generate_self_schema.py
21-
2217
- name: prepare profiling directory
2318
shell: bash
2419
# making this ahead of the compile ensures that the local user can write to this

.github/check_version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"""
33
Check the version in Cargo.toml matches the version from `GITHUB_REF` environment variable.
44
"""
5+
56
import os
67
import re
78
import sys
@@ -18,7 +19,7 @@ def main() -> int:
1819
if version_ref:
1920
version = re.sub('^refs/tags/v*', '', version_ref.lower())
2021
else:
21-
print(f'✖ "GITHUB_REF" env variables not found')
22+
print('✖ "GITHUB_REF" env variables not found')
2223
return 1
2324

2425
# convert from python pre-release version to rust pre-release version

0 commit comments

Comments
 (0)