Skip to content

Commit

Permalink
enhance: allow github actions runner run on ubuntu-latest os (#29525)
Browse files Browse the repository at this point in the history
since milvus's build procedure is in the responding docker enviornment,
this procedure does not bind with particular host os, in turn it allows
milvus build on any os , including latest ubuntu os

background:
our self hosted runner is only using ubuntu-latest os

benefit:
make this github workflow obtain the resource from the self-hosted
runner

Signed-off-by: Sammy Huang <[email protected]>
  • Loading branch information
yellow-shine authored Dec 28, 2023
1 parent 4b406e5 commit 497ced9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ concurrency:
jobs:
Build:
name: Build and test AMD64 Ubuntu ${{ matrix.ubuntu }}
runs-on: ubuntu-${{ matrix.ubuntu }}
runs-on: ubuntu-latest
timeout-minutes: 180
strategy:
fail-fast: false
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
UT-Cpp:
name: UT for Cpp
needs: Build
runs-on: ubuntu-${{ matrix.ubuntu }}
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: false
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
UT-Go:
name: UT for Go
needs: Build
runs-on: ubuntu-${{ matrix.ubuntu }}
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: false
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
integration-test:
name: Integration Test
needs: Build
runs-on: ubuntu-${{ matrix.ubuntu }}
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: false
Expand Down

0 comments on commit 497ced9

Please sign in to comment.