Skip to content

Commit

Permalink
refactor: move smoke-tests to new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lidel committed Mar 15, 2024
1 parent 06271b5 commit 3b1f59b
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 117 deletions.
90 changes: 90 additions & 0 deletions .github/workflows/dnslink-smoke-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: DNSLink Smoke-tests

on:
schedule:
- cron: '0 * * * *'
workflow_dispatch:
pull_request:
branches:
- '**'

env:
KUBO_VER: 'v0.27.0' # kubo daemon used for publishing to IPFS
CLUSTER_CTL_VER: 'v1.0.8' # ipfs-cluster-ctl used by publish-to-ipfs

jobs:
dnslink:
runs-on: ubuntu-latest
outputs:
link-cid: ${{ steps.dnslink.link-cid }}
dev-cid: ${{ steps.dnslink.dev-cid }}
steps:
- uses: ipfs/download-ipfs-distribution-action@v1
with:
name: kubo
version: "${{ env.KUBO_VER }}"
- uses: ipfs/start-ipfs-daemon-action@v1
- name: Read CID from DNSLink at inbrowser.link|dev
id: dnslink
run: |
echo "link=$(ipfs resolve /ipns/inbrowser.link | sed 's|^/ipfs/||')" >> $GITHUB_OUTPUT
echo "dev=$(ipfs resolve /ipns/inbrowser.dev | sed 's|^/ipfs/||')" >> $GITHUB_OUTPUT
smoke-test-cached-http: # basic smoke test that lets us know when stale-while-revalidate caching does not work on either env
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dnslink:
- inbrowser.link
- inbrowser.dev
steps:
- name: Smoke-test instant (cached, stale-while-revalidate) /ipfs-sw-main.js at ${{ matrix.dnslink }}
run: curl --retry 3 --retry-delay 61 --retry-all-errors -v -L "https://${{ matrix.dnslink }}/ipfs-sw-main.js" > /dev/null

smoke-test-fresh-http: # basic smoke test for getting latest DNSLink DAG over HTTP gateways
needs: dnslink
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
gateway:
- trustless-gateway.link
- cloudflare-ipfs.com
cid:
- ${{ needs.dnslink.outputs.link }}
- ${{ needs.dnslink.outputs.dev }}
steps:
- name: Try fetching the new CID as CAR from ${{ matrix.gateway }}
run: curl --retry 6 --retry-delay 61 --retry-all-errors -v -L --http1.1 "https://${{ matrix.gateway }}/ipfs/${{ matrix.cid }}?format=car" -o dag.car
- uses: ipfs/download-ipfs-distribution-action@v1
with:
name: kubo
version: "${{ env.KUBO_VER }}"
- name: Confirm the CAR contains the entire DAG
run: ipfs init && ipfs dag import --offline --pin-roots=true dag.car

smoke-test-fresh-p2p: # basic smoke test for getting latest DNSLink DAG over P2P with Kubo
needs: dnslink
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
routing-type:
- dhtclient
- autoclient
cid:
- ${{ needs.dnslink.outputs.link }}
- ${{ needs.dnslink.outputs.dev }}
steps:
- uses: ipfs/download-ipfs-distribution-action@v1
with:
name: kubo
version: "${{ env.KUBO_VER }}"
- name: Init IPFS daemon
run: |
ipfs init --profile server
ipfs config Routing.Type ${{ matrix.routing-type }}
- uses: ipfs/start-ipfs-daemon-action@v1
- name: Confirm Kubo can fetch with Routing.Type=${{ matrix.routing-type }}
run: ipfs dag stat ${{ matrix.cid }}
48 changes: 2 additions & 46 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,61 +349,17 @@ jobs:
env:
CID: ${{ needs.publish-to-ipfs.outputs.cid }}

smoke-test-cached-http: # basic smoke test that lets us know when stale-while-revalidate caching does not work on either env
smoke-test-fresh-p2p: # basic smoke test for getting DAG with Kubo
if: needs.publish-to-ipfs.outputs.cid
needs: publish-to-ipfs
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dnslink:
- inbrowser.link
- inbrowser.dev
steps:
- name: Smoke-test instant (cached, stale-while-revalidate) /ipfs-sw-main.js at ${{ matrix.dnslink }}
run: curl --retry 3 --retry-delay 61 --retry-all-errors -v -L https://${{ matrix.dnslink }}/ipfs-sw-main.js > /dev/null

smoke-test-fresh-http: # basic smoke test for getting new DAG over HTTP gateways
if: needs.publish-to-ipfs.outputs.cid
needs: publish-to-ipfs
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
gateway:
- trustless-gateway.link
- cloudflare-ipfs.com
steps:
- name: Try fetching the new CID as CAR from ${{ matrix.gateway }}
run: curl --retry 6 --retry-delay 61 --retry-all-errors -v -L --http1.1 "https://${{ matrix.gateway }}/ipfs/${{ needs.publish-to-ipfs.outputs.cid }}?format=car" -o dag.car
- uses: ipfs/download-ipfs-distribution-action@v1
with:
name: kubo
version: "${{ env.KUBO_VER }}"
- name: Confirm the CAR contains the entire DAG
run: ipfs init && ipfs dag import --offline --pin-roots=true dag.car

smoke-test-fresh-p2p: # basic smoke test for getting new DAG over P2P with Kubo
if: needs.publish-to-ipfs.outputs.cid
needs: publish-to-ipfs
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
routing-type:
- dhtclient
- autoclient
steps:
- uses: ipfs/download-ipfs-distribution-action@v1
with:
name: kubo
version: "${{ env.KUBO_VER }}"
- name: Init IPFS daemon
run: |
ipfs init --profile server
ipfs config Routing.Type ${{ matrix.routing-type }}
- uses: ipfs/start-ipfs-daemon-action@v1
- name: Confirm Kubo can fetch with Routing.Type=${{ matrix.routing-type }}
- name: Confirm Kubo can fetch published DAG
run: ipfs dag stat ${{ needs.publish-to-ipfs.outputs.cid }}

release-please:
Expand Down
71 changes: 0 additions & 71 deletions .github/workflows/pin-to-cluster.yml

This file was deleted.

0 comments on commit 3b1f59b

Please sign in to comment.