-
Notifications
You must be signed in to change notification settings - Fork 5
1.0.0 #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
1.0.0 #44
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
8a5519e
Removing 0.1.X files
8699fa9
Adding 1.0.0 files
892efb6
Fix docs
9e1a460
Support Julia 1.10 without streaming
3c8db70
Handle 1.10 support in a way that notifies user but doesn't break docs
4d65a95
workloads.jl fix using old package name
csvance 58ddc93
Update CI
csvance File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,73 +1,59 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| tags: ["*"] | ||
| branches: [ "master" ] | ||
| pull_request: | ||
| branches: [ "master" ] | ||
|
|
||
| env: | ||
| GRPC_TEST_SERVER_HOST: "localhost" | ||
| GRPC_TEST_SERVER_PORT: 8001 | ||
|
|
||
| jobs: | ||
| test: | ||
| name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | ||
| runs-on: ${{ matrix.os }} | ||
| continue-on-error: ${{ matrix.experimental }} | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| version: | ||
| - '1.6' | ||
| - '1' # automatically expands to the latest stable 1.x release of Julia | ||
| - '1.10' | ||
| - '1.12' | ||
| - 'nightly' | ||
| os: | ||
| - ubuntu-latest | ||
| arch: | ||
| - x64 | ||
| - x86 | ||
| experimental: [false] | ||
| include: | ||
| # allow failures on nightlies | ||
| - os: ubuntu-latest | ||
| arch: x64 | ||
| version: nightly | ||
| experimental: true | ||
| - os: ubuntu-latest | ||
| arch: x86 | ||
| version: nightly | ||
| experimental: true | ||
| # test macOS and Windows with latest Julia only | ||
| - os: macOS-latest | ||
| arch: x64 | ||
| version: 1 | ||
| experimental: true | ||
| - os: windows-latest | ||
| arch: x64 | ||
| version: 1 | ||
| experimental: false | ||
| - os: windows-latest | ||
| arch: x86 | ||
| version: 1 | ||
| experimental: false | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: setup protoc | ||
| uses: arduino/setup-protoc@v1 | ||
| with: | ||
| version: '3.x' | ||
| - run: protoc --version | ||
| - uses: julia-actions/setup-julia@v1 | ||
| with: | ||
| version: ${{ matrix.version }} | ||
| arch: ${{ matrix.arch }} | ||
| - uses: actions/cache@v1 | ||
| env: | ||
| cache-name: cache-artifacts | ||
| with: | ||
| path: ~/.julia/artifacts | ||
| key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-test-${{ env.cache-name }}- | ||
| ${{ runner.os }}-test- | ||
| ${{ runner.os }}- | ||
| - uses: julia-actions/julia-buildpkg@v1 | ||
| - uses: julia-actions/julia-runtest@v1 | ||
| - uses: julia-actions/julia-processcoverage@v1 | ||
| - uses: codecov/codecov-action@v1 | ||
| with: | ||
| file: lcov.info | ||
| - uses: actions/checkout@v5 | ||
| - name: Install uv | ||
| uses: astral-sh/setup-uv@v6 | ||
| - name: Install Python | ||
| run: uv python install | ||
| working-directory: test/python | ||
| - name: Run Python gRPC Test Server | ||
| run: uv run grpc_test_server.py test & | ||
| working-directory: test/python | ||
| - uses: julia-actions/setup-julia@v1 | ||
| with: | ||
| version: ${{ matrix.version }} | ||
| arch: ${{ matrix.arch }} | ||
| - uses: actions/cache@v4 | ||
| env: | ||
| cache-name: cache-artifacts | ||
| with: | ||
| path: ~/.julia/artifacts | ||
| key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-test-${{ env.cache-name }}- | ||
| ${{ runner.os }}-test- | ||
| ${{ runner.os }}- | ||
| - uses: julia-actions/julia-buildpkg@v1 | ||
| - uses: julia-actions/julia-runtest@v1 | ||
| - name: Stop Python gRPC Test Serer | ||
| run: killall uv | ||
| - uses: julia-actions/julia-processcoverage@v1 | ||
| - uses: codecov/codecov-action@v5 | ||
| with: | ||
| token: ${{ secrets.CODECOV_TOKEN }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| name: Documentation | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - master # update to match your development branch (master, main, dev, trunk, ...) | ||
| tags: '*' | ||
| pull_request: | ||
|
|
||
| jobs: | ||
| build: | ||
| # These permissions are needed to: | ||
| # - Deploy the documentation: https://documenter.juliadocs.org/stable/man/hosting/#Permissions | ||
| # - Delete old caches: https://github.com/julia-actions/cache#usage | ||
| permissions: | ||
| actions: write | ||
| contents: write | ||
| pull-requests: read | ||
| statuses: write | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: julia-actions/setup-julia@v2 | ||
| with: | ||
| version: '1' | ||
| - uses: julia-actions/cache@v2 | ||
| - name: Install dependencies | ||
| shell: julia --color=yes --project=docs {0} | ||
| run: | | ||
| using Pkg | ||
| Pkg.develop(PackageSpec(path=pwd())) | ||
| Pkg.instantiate() | ||
| - name: Build and deploy | ||
| run: julia --color=yes --project=docs docs/make.jl | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token | ||
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| .venv | ||
| .idea | ||
| __pycache__ | ||
| *.pyc | ||
| build | ||
| Manifest.toml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| MIT License | ||
|
|
||
| Copyright (c) 2025: Carroll Vance <[email protected]> | ||
| Copyright (c) 2021: Julia Computing, Inc. | ||
| Copyright (c) 2020 Stefan Karpinski <[email protected]> and contributors | ||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included in all | ||
| copies or substantial portions of the Software. | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| SOFTWARE. | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,23 @@ | ||
| name = "gRPCClient" | ||
| uuid = "aaca4a50-36af-4a1d-b878-4c443f2061ad" | ||
| authors = ["Tanmay K.M. <tanmaykm@gmail.com>"] | ||
| version = "0.1.4" | ||
| authors = ["Carroll Vance <cs.vance@icloud.com>"] | ||
| version = "1.0.0" | ||
|
|
||
| [deps] | ||
| Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" | ||
| FileWatching = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee" | ||
| LibCURL = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21" | ||
| PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a" | ||
| ProtoBuf = "3349acd9-ac6a-5e09-bcdb-63829b23a429" | ||
|
|
||
| [compat] | ||
| Downloads = "1.4" | ||
| LibCURL = "0.6" | ||
| ProtoBuf = "0.11" | ||
| julia = "1.6" | ||
| julia = "1.10" | ||
| FileWatching = "^1.10" | ||
| LibCURL = "~0.6.4" | ||
| PrecompileTools = "^1.2" | ||
| ProtoBuf = "~1.2" | ||
|
|
||
| [extras] | ||
| Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
| Sockets = "6462fe0b-24de-5631-8697-dd941f90decc" | ||
| Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
|
||
| [targets] | ||
| test = ["Random", "Sockets", "Test"] | ||
| test = ["Test"] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.