Skip to content

Commit

Permalink
Remove home_repl dep for now
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd committed Aug 2, 2023
1 parent 3b56da6 commit 1f20b49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 44 deletions.
42 changes: 1 addition & 41 deletions .github/workflows/build_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,48 +26,8 @@ jobs:
malloc-impl: ${{ inputs.malloc-impl }}
prerelease: ${{ inputs.prerelease }}
if: ${{ github.event_name != 'pull_request' }}
NuRaftMesgDeps:
needs: SislDeps
uses: eBay/nuraft_mesg/.github/workflows/build_dependencies.yml@main
with:
branch: main
platform: ${{ inputs.platform }}
build-type: ${{ inputs.build-type }}
malloc-impl: ${{ inputs.malloc-impl }}
prerelease: ${{ inputs.prerelease }}
if: ${{ github.event_name != 'pull_request' }}
IOMgrDeps:
needs: SislDeps
uses: eBay/iomanager/.github/workflows/build_dependencies.yml@master
with:
branch: master
platform: ${{ inputs.platform }}
build-type: ${{ inputs.build-type }}
malloc-impl: ${{ inputs.malloc-impl }}
prerelease: ${{ inputs.prerelease }}
if: ${{ github.event_name != 'pull_request' }}
HomeStoreDeps:
needs: IOMgrDeps
uses: eBay/homestore/.github/workflows/build_dependencies.yml@master
with:
branch: master
platform: ${{ inputs.platform }}
build-type: ${{ inputs.build-type }}
malloc-impl: ${{ inputs.malloc-impl }}
prerelease: ${{ inputs.prerelease }}
if: ${{ github.event_name != 'pull_request' }}
HomeReplDeps:
needs: [HomeStoreDeps, NuRaftMesgDeps]
uses: eBay/homereplication/.github/workflows/build_dependencies.yml@main
with:
branch: ${{ github.ref }}
platform: ${{ inputs.platform }}
build-type: ${{ inputs.build-type }}
malloc-impl: ${{ inputs.malloc-impl }}
prerelease: ${{ inputs.prerelease }}
if: ${{ github.event_name != 'pull_request' }}
HomeObjectDeps:
needs: [HomeReplDeps]
needs: [SislDeps]
uses: ./.github/workflows/build_dependencies.yml
with:
branch: ${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def build_requirements(self):
self.build_requires("gtest/1.13.0")

def requirements(self):
self.requires("home_replication/[~=0, include_prerelease=True]@oss/main")
#self.requires("home_replication/[~=0, include_prerelease=True]@oss/main")
self.requires("sisl/[~=9, include_prerelease=True]@oss/master")

self.requires("openssl/1.1.1s", override=True)
Expand Down
5 changes: 3 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
cmake_minimum_required (VERSION 3.11)

find_package(Threads QUIET REQUIRED)
find_package(homestore QUIET REQUIRED)
find_package(home_replication QUIET REQUIRED)
find_package(sisl QUIET REQUIRED)
#find_package(homestore QUIET REQUIRED)
#find_package(home_replication QUIET REQUIRED)

find_package(GTest QUIET REQUIRED)

Expand Down

0 comments on commit 1f20b49

Please sign in to comment.