Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e907782
Improve Rust on_close_callback
flyingsilverfin Sep 26, 2025
a87a9d7
Trigger CI
flyingsilverfin Sep 30, 2025
df3ba3a
Deploy snapshot
flyingsilverfin Sep 30, 2025
b1b3f5b
Fix build
flyingsilverfin Sep 30, 2025
ebf41f5
Include mutex
flyingsilverfin Sep 30, 2025
cbf1d84
Fix drop behaviour
flyingsilverfin Oct 1, 2025
9e94c90
Trigger CI
flyingsilverfin Oct 1, 2025
a3bbf3a
Use built-in Python 3.11 in mac jobs
flyingsilverfin Oct 1, 2025
a789e6e
Use builtin python3
flyingsilverfin Oct 1, 2025
614705d
Add printlns
flyingsilverfin Oct 1, 2025
5b1cb74
Establish close() as an async, non-dropping behaviour and drop as a s…
flyingsilverfin Oct 1, 2025
308d290
Add configurable logging
flyingsilverfin Oct 1, 2025
fcee68b
Put logging init into correct place
flyingsilverfin Oct 1, 2025
b9e9468
More logging
flyingsilverfin Oct 2, 2025
386397e
Even more logging
flyingsilverfin Oct 2, 2025
e462baa
Even even more logging
flyingsilverfin Oct 2, 2025
f0a6ba2
Try AI fix
flyingsilverfin Oct 2, 2025
d5a3c9e
Move wait
flyingsilverfin Oct 2, 2025
2cee8dd
WIP diagnostic forced error
flyingsilverfin Oct 2, 2025
bf3f454
Try channel keepalives
flyingsilverfin Oct 2, 2025
9b58f9a
Fix connection/transaction close race
flyingsilverfin Oct 2, 2025
495324a
Fmt
flyingsilverfin Oct 2, 2025
65a4141
Try with just keepalive when idle
flyingsilverfin Oct 2, 2025
7eb2094
Cleanup
flyingsilverfin Oct 2, 2025
3258c17
Try 10s keepalive
flyingsilverfin Oct 2, 2025
6dd3128
Final cleanup
flyingsilverfin Oct 2, 2025
0955701
Remove CircleCI publishing
flyingsilverfin Oct 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 11 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ commands:
type: string
steps:
- run: |
brew install [email protected]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes mac build issues

curl -OL "https://github.com/bazelbuild/bazelisk/releases/download/v1.17.0/bazelisk-darwin-<<parameters.bazel-arch>>"
sudo mv "bazelisk-darwin-<<parameters.bazel-arch>>" /usr/local/bin/bazel
chmod a+x /usr/local/bin/bazel
Expand Down Expand Up @@ -149,15 +148,14 @@ commands:
steps:
- install-brew-rosetta
- run: |
/usr/local/bin/brew install [email protected]
tool/test/start-community-server.sh
/usr/local/bin/python3.9 -m pip install wheel
/usr/local/bin/python3.9 -m pip install pip==21.3.1
/usr/local/bin/python3.9 -m pip install -r python/requirements_dev.txt
/usr/local/bin/python3.9 -m pip install --extra-index-url https://repo.typedb.com/public/public-snapshot/python/simple typedb-driver==0.0.0+$(git rev-parse HEAD)
python3 -m pip install wheel
python3 -m pip install pip==21.3.1
python3 -m pip install -r python/requirements_dev.txt
python3 -m pip install --extra-index-url https://repo.typedb.com/public/public-snapshot/python/simple typedb-driver==0.0.0+$(git rev-parse HEAD)
sleep 5
pushd python/tests/deployment/
/usr/local/bin/python3.9 -m unittest test && export TEST_SUCCESS=0 || export TEST_SUCCESS=1
python3 -m unittest test && export TEST_SUCCESS=0 || export TEST_SUCCESS=1
popd
tool/test/stop-community-server.sh
exit $TEST_SUCCESS
Expand Down Expand Up @@ -850,32 +848,32 @@ workflows:
- deploy-snapshot-linux-arm64:
filters:
branches:
only: [development, master, "3.0"]
only: [development, master]

- deploy-snapshot-linux-x86_64:
filters:
branches:
only: [development, master, "3.0"]
only: [development, master]

- deploy-snapshot-mac-arm64:
filters:
branches:
only: [development, master, "3.0"]
only: [development, master]

- deploy-snapshot-mac-x86_64:
filters:
branches:
only: [development, master, "3.0"]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unused

only: [development, master]

- deploy-snapshot-windows-x86_64:
filters:
branches:
only: [development, master, "3.0"]
only: [development, master]

- deploy-snapshot-any:
filters:
branches:
only: [development, master, "3.0"]
only: [development, master]
requires:
- deploy-snapshot-linux-arm64
- deploy-snapshot-linux-x86_64
Expand Down
Loading