Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f334ec5
patch to compile
SwenSchaeferjohann Oct 23, 2025
0b0c563
clean
SwenSchaeferjohann Nov 10, 2025
3231085
clean
SwenSchaeferjohann Nov 10, 2025
d4f2680
rm macro
SwenSchaeferjohann Nov 10, 2025
f3325f3
clean
SwenSchaeferjohann Nov 10, 2025
76a37ae
clean
SwenSchaeferjohann Nov 10, 2025
b514962
reset close_for_compress_and_close to main
SwenSchaeferjohann Nov 11, 2025
13ba98c
fmt
SwenSchaeferjohann Nov 11, 2025
92c51cc
try revert
SwenSchaeferjohann Nov 11, 2025
c8f1338
build account-compression with test flag
SwenSchaeferjohann Nov 11, 2025
8a89f29
fmt
SwenSchaeferjohann Nov 12, 2025
d986042
fix workflow to ensure we build account-compression with test feature
SwenSchaeferjohann Nov 12, 2025
45d0f1e
fix sdk test nav
SwenSchaeferjohann Nov 12, 2025
1180a64
try sdk-tests.yml with hyphen
SwenSchaeferjohann Nov 12, 2025
a21dbcf
rm idl build
SwenSchaeferjohann Nov 12, 2025
b22289f
csdk anchor test artifact
SwenSchaeferjohann Nov 12, 2025
13cbd5e
wip
SwenSchaeferjohann Nov 12, 2025
3bf791c
reuse ctoken_types
SwenSchaeferjohann Nov 12, 2025
2034b35
move ctoken to light-compressed-token-sdk
SwenSchaeferjohann Nov 13, 2025
5df92f9
clean
SwenSchaeferjohann Nov 13, 2025
58921e6
move pack to compressed-token-sdk
SwenSchaeferjohann Nov 13, 2025
ad61398
clean
SwenSchaeferjohann Nov 13, 2025
881b743
clean
SwenSchaeferjohann Nov 13, 2025
35d68b1
clean
SwenSchaeferjohann Nov 13, 2025
1c6e634
clean
SwenSchaeferjohann Nov 13, 2025
80bfac3
clean
SwenSchaeferjohann Nov 13, 2025
170285f
clean
SwenSchaeferjohann Nov 13, 2025
b0c20f0
fix idl build
ananas-block Nov 14, 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
3 changes: 2 additions & 1 deletion .github/actions/setup-and-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ runs:
path: |
target/deploy/create_address_test_program.so
target/deploy/sdk_anchor_test.so
key: ${{ runner.os }}-program-tests-${{ hashFiles('program-tests/**/Cargo.toml', 'program-tests/**/Cargo.lock', 'program-tests/**/*.rs', 'test-programs/**/Cargo.toml', 'test-programs/**/*.rs') }}
target/deploy/csdk_anchor_test.so
key: ${{ runner.os }}-program-tests-${{ hashFiles('program-tests/**/Cargo.toml', 'program-tests/**/Cargo.lock', 'program-tests/**/*.rs', 'test-programs/**/Cargo.toml', 'test-programs/**/*.rs', 'sdk-tests/**/Cargo.toml', 'sdk-tests/**/*.rs') }}
restore-keys: |
${{ runner.os }}-program-tests-

Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/cli-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@ jobs:
skip-components: "redis,disk-cleanup,go"
cache-key: "js"

- name: Build stateless.js with V1
run: |
cd js/stateless.js
pnpm build:v1

- name: Build compressed-token with V1
run: |
cd js/compressed-token
pnpm build:v1

- name: Build CLI
run: |
npx nx build @lightprotocol/zk-compression-cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
matrix:
include:
- program: native
sub-tests: '["cargo-test-sbf -p sdk-native-test", "cargo-test-sbf -p sdk-v1-native-test", "cargo test-sbf -p client-test"]'
sub-tests: '["cargo-test-sbf -p sdk-native-test", "cargo-test-sbf -p sdk-v1-native-test", "cargo-test-sbf -p client-test"]'
- program: anchor & pinocchio
sub-tests: '["cargo-test-sbf -p sdk-anchor-test", "cargo-test-sbf -p sdk-pinocchio-v1-test", "cargo-test-sbf -p sdk-pinocchio-v2-test", "cargo-test-sbf -p pinocchio-nostd-test"]'
sub-tests: '["cargo-test-sbf -p sdk-anchor-test", "cargo-test-sbf -p csdk-anchor-test", "cargo-test-sbf -p sdk-pinocchio-v1-test", "cargo-test-sbf -p sdk-pinocchio-v2-test", "cargo-test-sbf -p pinocchio-nostd-test"]'
- program: token test
sub-tests: '["cargo-test-sbf -p sdk-token-test"]'
- program: sdk-libs
Expand Down
Loading
Loading