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

Commit

Permalink
feat: Syndicate sphere revisions to IPFS Kubo (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdata authored Nov 28, 2022
1 parent fad2aa2 commit e269e04
Show file tree
Hide file tree
Showing 32 changed files with 2,056 additions and 245 deletions.
30 changes: 26 additions & 4 deletions .github/workflows/run_test_suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
for-test: true

run-test-suite-mac-os:
run-test-suite-mac-os-swift:
runs-on: macos-12
needs: ['build-noosphere-apple-artifacts']
steps:
Expand All @@ -32,6 +32,7 @@ jobs:
swift build
swift test
run-test-suite-linux:
runs-on: ubuntu-latest
steps:
Expand All @@ -46,10 +47,31 @@ jobs:
run: |
sudo apt-get update -qqy
sudo apt-get install jq protobuf-compiler cmake
- name: 'Install IPFS Kubo'
uses: ibnesayeed/setup-ipfs@master
with:
ipfs_version: v0.17.0
run_daemon: true
- name: 'Run Rust native target tests'
working-directory: ./rust
run: cargo test
shell: bash
uses: actions-rs/cargo@v1.0.3
with:
command: test
args: --features test_kubo

run-test-suite-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/toolchain@v1
with:
override: true
profile: minimal
toolchain: stable
- name: 'Install environment packages'
run: |
sudo apt-get update -qqy
sudo apt-get install jq protobuf-compiler cmake
- name: 'Install Rust/WASM test dependencies'
run: |
rustup target install wasm32-unknown-unknown
Expand Down
Loading

0 comments on commit e269e04

Please sign in to comment.