-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat: update DAG API to match [email protected] changes #3917
Changes from 16 commits
b7b0b3f
d558a60
5d1cdfa
24626cb
80b0343
374349d
c0286df
3907671
8899e40
f8fa2f9
f4f42a2
4d77f1d
a960d28
abd817a
c6816a4
50cbc1f
566f10a
0a2f12c
ce58e59
376d27d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -67,10 +67,12 @@ jobs: | |
| name: Unit tests ${{ matrix.project }} node ${{ matrix.node }} ${{ matrix.os }} | ||
| needs: build | ||
| runs-on: ${{ matrix.os }} | ||
| concurrency: js-ipfs-test-${{ github.ref }} | ||
| strategy: | ||
| matrix: | ||
| os: [windows-latest, ubuntu-latest, macos-latest] | ||
| node: [16] | ||
| fail-fast: false | ||
|
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
|
|
@@ -101,6 +103,7 @@ jobs: | |
| name: Unit tests ${{ matrix.project }} ${{ matrix.browser }} ${{ matrix.type }} | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| concurrency: js-ipfs-test-${{ github.ref }} | ||
| strategy: | ||
| matrix: | ||
| browser: | ||
|
|
@@ -109,6 +112,7 @@ jobs: | |
| type: | ||
| - browser | ||
| - webworker | ||
| fail-fast: false | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
|
|
@@ -139,6 +143,7 @@ jobs: | |
| name: Unit tests electron-main | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| concurrency: js-ipfs-test-${{ github.ref }} | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
|
|
@@ -171,6 +176,7 @@ jobs: | |
| name: Unit tests electron-renderer | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| concurrency: js-ipfs-test-${{ github.ref }} | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
|
|
@@ -203,13 +209,15 @@ jobs: | |
| name: Interop tests ${{ matrix.project }} ${{ matrix.type }} | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| concurrency: js-ipfs-test-${{ github.ref }} | ||
| strategy: | ||
| matrix: | ||
| type: | ||
| - node | ||
| - browser | ||
| #- electron-main | ||
| #- electron-renderer | ||
| fail-fast: false | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
|
|
@@ -240,6 +248,7 @@ jobs: | |
| name: Interface tests ${{ matrix.suite }} ${{ matrix.type }} | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| concurrency: js-ipfs-test-${{ github.ref }} | ||
| strategy: | ||
| matrix: | ||
| type: | ||
|
|
@@ -252,6 +261,7 @@ jobs: | |
| - test:interface:client | ||
| - test:interface:http-go | ||
| - test:interface:http-js | ||
| fail-fast: false | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
|
|
@@ -282,6 +292,7 @@ jobs: | |
| name: Interface tests test:interface:message-port-client browser | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| concurrency: js-ipfs-test-${{ github.ref }} | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
|
|
@@ -312,6 +323,7 @@ jobs: | |
| name: Test example ${{ matrix.example.name }} | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| concurrency: js-ipfs-test-${{ github.ref }} | ||
| strategy: | ||
| matrix: | ||
| example: | ||
|
|
@@ -366,9 +378,9 @@ jobs: | |
| - name: ipfs custom ipfs repo | ||
| repo: https://github.com/ipfs-examples/js-ipfs-custom-ipfs-repo.git | ||
| deps: ipfs-core@$PWD/packages/ipfs-core/dist | ||
| - name: ipfs custom ipld formats | ||
| repo: https://github.com/ipfs-examples/js-ipfs-custom-ipld-formats.git | ||
| deps: ipfs-core@$PWD/packages/ipfs-core/dist,ipfs-daemon@$PWD/packages/ipfs-daemon/dist,ipfs-http-client@$PWD/packages/ipfs-http-client/dist | ||
| #- name: ipfs custom ipld formats | ||
| # repo: https://github.com/ipfs-examples/js-ipfs-custom-ipld-formats.git | ||
| # deps: ipfs-core@$PWD/packages/ipfs-core/dist,ipfs-daemon@$PWD/packages/ipfs-daemon/dist,ipfs-http-client@$PWD/packages/ipfs-http-client/dist | ||
| - name: ipfs custom libp2p | ||
| repo: https://github.com/ipfs-examples/js-ipfs-custom-libp2p.git | ||
| deps: ipfs-core@$PWD/packages/ipfs-core/dist | ||
|
|
@@ -396,9 +408,9 @@ jobs: | |
| - name: ipfs running multiple nodes | ||
| repo: https://github.com/ipfs-examples/js-ipfs-running-multiple-nodes.git | ||
| deps: ipfs@$PWD/packages/ipfs/dist | ||
| - name: ipfs traverse ipld graphs | ||
| repo: https://github.com/ipfs-examples/js-ipfs-traverse-ipld-graphs.git | ||
| deps: ipfs-core@$PWD/packages/ipfs-core/dist | ||
| #- name: ipfs traverse ipld graphs | ||
| # repo: https://github.com/ipfs-examples/js-ipfs-traverse-ipld-graphs.git | ||
| # deps: ipfs-core@$PWD/packages/ipfs-core/dist | ||
| - name: types with typescript | ||
| repo: https://github.com/ipfs-examples/js-ipfs-types-use-ipfs-from-ts.git | ||
| deps: ipfs-core@$PWD/packages/ipfs-core/dist | ||
|
|
@@ -436,6 +448,7 @@ jobs: | |
| name: Test external ${{ matrix.external.name }} | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| concurrency: js-ipfs-test-${{ github.ref }} | ||
| strategy: | ||
| matrix: | ||
| external: | ||
|
|
@@ -451,6 +464,7 @@ jobs: | |
| - name: ipfs-log | ||
| repo: https://github.com/orbitdb/ipfs-log.git | ||
| deps: ipfs@$PWD/packages/ipfs/dist,orbit-db-io@next | ||
| fail-fast: false | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - uses: actions/setup-node@v2 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.