Skip to content

Commit

Permalink
RCPP-41 Add null scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
leemaguire committed Mar 9, 2024
1 parent ae88bec commit 2791880
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

jobs:
build-static:
build-dynamic:
runs-on: ${{ matrix.os }}
name: "Static linkage"
strategy:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Conan create
working-directory: .
run: |
conan create . -tf="tests" -s build_type=${{ matrix.build_type }} -o use_libuv=True --build=missing
conan create . -tf="tests" -s build_type=${{ matrix.build_type }} -o use_libuv=True -o shared=True --build=missing
- name: Open a tmate debug session
if: ${{ failure() }}
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def source(self):
git = Git(self)
git.clone(url="https://github.com/realm/realm-cpp", target=".")
git.folder = "."
git.checkout(commit="5d77644485def49168fe25300f38a9d87ac28974")
git.checkout(commit="ae88becb0dfcd6e9dec290123ed5397ddc57c560")
git.run("submodule update --init --recursive")

def layout(self):
Expand Down

0 comments on commit 2791880

Please sign in to comment.