Skip to content

Commit

Permalink
fix: Use ubuntu22.04 instead of latest (#2614)
Browse files Browse the repository at this point in the history
See also: #2612

---------

Signed-off-by: yangxuan <[email protected]>
  • Loading branch information
XuanYang-cn authored Feb 7, 2025
1 parent 3056999 commit 7ee1527
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 36 deletions.
8 changes: 4 additions & 4 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ pull_request_rules:
- or:
- base=master
- base~=2\.\d
- "status-success=Run Python Tests (3.8, windows-latest)"
- "status-success=Run Python Tests (3.12, windows-latest)"
- "status-success=Run Python Tests (3.8, ubuntu-latest)"
- "status-success=Run Python Tests (3.12, ubuntu-latest)"
- "status-success=Run Python Tests (3.8, windows-2022)"
- "status-success=Run Python Tests (3.12, windows-2022)"
- "status-success=Run Python Tests (3.8, ubuntu-22.04)"
- "status-success=Run Python Tests (3.12, ubuntu-22.04)"
- "status-success=Run Check Proto (3.8)"
- "status-success=Code lint check (3.8)"
- "status-success=Run Check Proto (3.12)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_milvus_proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build:
name: Run Check Proto
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.8, 3.12]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
code-lint:
name: Code lint check
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.8, 3.12]
Expand Down
28 changes: 0 additions & 28 deletions .github/workflows/doc_update_event.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/nightly_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
python-version: [3.8]
env:
IMAGE_REPO: "milvusdb"
TAG_PREFIX: "master-"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.12]
os: [ubuntu-latest, windows-latest]
os: [ubuntu-22.04, windows-2022]
runs-on: ${{ matrix.os }}

steps:
Expand Down

0 comments on commit 7ee1527

Please sign in to comment.