Skip to content
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

Remove rpc-client crate #218

Merged
merged 6 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
15 changes: 0 additions & 15 deletions .github/workflows/bump-version.yml

This file was deleted.

74 changes: 0 additions & 74 deletions .github/workflows/publish.yml

This file was deleted.

115 changes: 0 additions & 115 deletions .github/workflows/rust.yml

This file was deleted.

25 changes: 7 additions & 18 deletions .github/workflows/soroban-rpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ jobs:
- uses: ./.github/actions/setup-go
with:
go-version: ${{ matrix.go }}
- name: Build soroban contract fixtures
run: |
rustup update
rustup target add wasm32-unknown-unknown
make build-test-wasms
- run: rustup update
- run: make build-libpreflight
- run: go test -race -cover -timeout 25m -v ./cmd/soroban-rpc/...

Expand Down Expand Up @@ -65,10 +61,6 @@ jobs:
with:
go-version: 1.22

- run: |
rustup target add ${{ matrix.rust_target }}
rustup update

# On windows, make sure we have the same compiler (linker) used by rust.
# This is important since the symbols names won't match otherwise.
- if: matrix.os == 'windows-latest'
Expand All @@ -86,6 +78,10 @@ jobs:
sudo apt-get install -y gcc-10-aarch64-linux-gnu
echo 'CC=aarch64-linux-gnu-gcc-10' >> $GITHUB_ENV

- run: |
rustup target add ${{ matrix.rust_target }}
rustup update

- name: Build libpreflight
run: make build-libpreflight
env:
Expand Down Expand Up @@ -138,14 +134,6 @@ jobs:

- uses: stellar/actions/rust-cache@main

- name: Build soroban contract fixtures
shell: bash
run: |
rustup update
rustup target add wasm32-unknown-unknown
make build_rust
make build-test-wasms

- name: Install Captive Core
shell: bash
run: |
Expand Down Expand Up @@ -187,11 +175,12 @@ jobs:
echo "Docker Compose Version:"
docker-compose version

- run: rustup update

- name: Build libpreflight
shell: bash
run: make build-libpreflight

- name: Run Soroban RPC Integration Tests
run: |
make install_rust
go test -race -timeout 60m -v ./cmd/soroban-rpc/internal/test/...
Loading
Loading