Skip to content

Commit

Permalink
enhance: make github workflow listen on all branch (#246)
Browse files Browse the repository at this point in the history
* enhance: make github workflow listen on all branch

Signed-off-by: Sammy Huang <[email protected]>

* fix: Update folly to resolve simd issue

Signed-off-by: Sammy Huang <[email protected]>

---------

Signed-off-by: Sammy Huang <[email protected]>
  • Loading branch information
yellow-shine authored Dec 4, 2023
1 parent caebbf3 commit dda750e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/analyzer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Analyzer
on:
pull_request:
push:
branches: [main]

jobs:
analyzer:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Pre-commit
on:
pull_request:
push:
branches: [main]


jobs:
pre-commit:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ut.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Unit Test
# This workflow is triggered on pushes or pull request to the repository.
on:
push:
branches:
- main


pull_request:
# File paths to consider in the event. Optional; defaults to all.
paths:
Expand Down
4 changes: 3 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ def requirements(self):
self.requires("double-conversion/3.2.1")
self.requires("xz_utils/5.2.5")
self.requires("fmt/9.1.0")
self.requires("folly/2023.07.12@milvus/dev")
self.requires("folly/2023.10.30.04@milvus/dev")
if self.settings.os != "Macos":
self.requires("libunwind/1.7.2")
if self.options.with_ut:
self.requires("catch2/3.3.1")
if self.options.with_benchmark:
Expand Down

0 comments on commit dda750e

Please sign in to comment.