Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Commit

Permalink
feat: Move "noosphere-ucan-key-support" features into "noosphere-ucan…
Browse files Browse the repository at this point in the history
…" under feature flags, replace ed25519-zebra with ed25519-dalek. (#840)
  • Loading branch information
jsantell authored Mar 1, 2024
1 parent ac7f5fc commit 78a4056
Show file tree
Hide file tree
Showing 39 changed files with 289 additions and 1,017 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/run_test_suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,12 @@ jobs:
${{ matrix.features }}
${{ matrix.toolchain}}" > test-results/target
FEATURES="";
UCAN_FEATURES="noosphere-ucan/p256,noosphere-ucan/rsa,noosphere-ucan/ed25519"
FEATURES="$UCAN_FEATURES"
if [ -n "${{matrix.features}}" ]; then
FEATURES="--features ${{matrix.features}}"
FEATURES="--features ${{matrix.features}},$UCAN_FEATURES"
fi
cargo +${{ matrix.toolchain }} nextest run $FEATURES --profile ci --color always 2>&1 | tee test-results/log
Expand Down Expand Up @@ -202,7 +204,9 @@ jobs:
shell: bash
- name: 'Run Rust headless browser tests'
working-directory: ./rust
run: CHROMEDRIVER=/usr/local/bin/chromedriver cargo test --target wasm32-unknown-unknown
run: |
WASM_UCAN_FEATURES="noosphere-ucan/web-crypto-rsa,noosphere-ucan/p256,noosphere-ucan/rsa,noosphere-ucan/ed25519"
CHROMEDRIVER=/usr/local/bin/chromedriver cargo test --target wasm32-unknown-unknown --features $WASM_UCAN_FEATURES
shell: bash

run-test-suite-web-typescript:
Expand Down
3 changes: 1 addition & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@
"rust/noosphere-ipfs": "0.8.6",
"rust/noosphere-gateway": "0.12.0",
"rust/noosphere-common": "0.1.2",
"rust/noosphere-ucan": "0.4.0",
"rust/noosphere-ucan-key-support": "0.1.7"
"rust/noosphere-ucan": "0.4.0"
}
Loading

0 comments on commit 78a4056

Please sign in to comment.