Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions .github/actions/setup-rust-stellar/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ runs:

- name: Install Stellar CLI
run: |
STELLAR_VERSION="23.1.3"
STELLAR_VERSION="27.0.0"
STELLAR_TAR="stellar-cli-${STELLAR_VERSION}-x86_64-unknown-linux-gnu.tar.gz"
# Official SHA-256 from https://github.com/stellar/stellar-cli/releases/tag/v23.1.3
STELLAR_SHA256="cca0a9e249176b15ac2d63a394b383c0699dd59cd52b67cd9593427f0d039d87"
# Official SHA-256 from https://github.com/stellar/stellar-cli/releases/tag/v27.0.0
STELLAR_SHA256="357bf712f6353c28cd33c794402a3c87231757a5b305e6ef1604365af4fdd556"

wget -q "https://github.com/stellar/stellar-cli/releases/download/v${STELLAR_VERSION}/${STELLAR_TAR}"

Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
- testnet
paths:
- 'contracts/**'
- 'Cargo.toml'
- 'Cargo.lock'
- 'rust-toolchain.toml'
- '.github/actions/setup-rust-stellar/**'
- '.github/workflows/verify-build.yml'
# Use pull_request (not pull_request_target): the check must run the workflow
# from the PR head so branch-filter changes take effect on the PR itself, and
Expand All @@ -19,6 +23,10 @@ on:
- testnet
paths:
- 'contracts/**'
- 'Cargo.toml'
- 'Cargo.lock'
- 'rust-toolchain.toml'
- '.github/actions/setup-rust-stellar/**'
- '.github/workflows/verify-build.yml'
- '.github/workflows/rustfmt.yml'
workflow_dispatch:
Expand Down
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Source: <https://github.com/stellar/stellar-dev-skill>

```bash
# Build
cd contracts/events && cargo build --target wasm32-unknown-unknown --release
cd contracts/events && cargo build --target wasm32v1-none --release
Comment thread
0xdevcollins marked this conversation as resolved.

# Test (host target)
cargo test -p boundless-events
Expand All @@ -46,7 +46,7 @@ Mainnet admin operations live behind the multi-sig defined in `docs/admin-custod

```bash
cargo test -p boundless-events
cargo build --release --target wasm32-unknown-unknown
cargo build --release --target wasm32v1-none
```

Update `BACKLOG.md` if your PR closes one of the entries there.
Expand Down
Loading
Loading