Skip to content

Commit ed47014

Browse files
committed
some fix
1 parent 07e6c69 commit ed47014

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: windows
2424
path: output/results.csv
2525
build_linux:
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v4
2929
- name: Setup Clang

scripts/build_all_versions.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ def __init__(self, branch: str) -> None:
1818

1919

2020
def tags_filter(tags: list[TagReference]) -> list[TagReference]:
21-
"""Filter tag version above v1.1.0(include v1.1.0)
22-
"""
23-
base_ver = version.parse('1.1.0')
21+
base_ver = version.parse('1.4.0')
2422
ret_tags = []
2523
for tag in tags:
2624
try:

0 commit comments

Comments
 (0)