Skip to content

Commit

Permalink
feat: kubo v0.29.0-rc2 (#1087)
Browse files Browse the repository at this point in the history
* chore: add Kubo release
* chore: update deps and cron
  • Loading branch information
lidel authored Jun 4, 2024
1 parent 1e4fdfd commit c802ba7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

env:
DIST_ROOT: ${{ github.event.inputs.custom_dist_root || '/ipns/dist.ipfs.tech' }} # content root used for calculating diff to build
KUBO_VER: 'v0.27.0' # kubo daemon used for chunking and applying diff
KUBO_VER: 'v0.28.0' # kubo daemon used for chunking and applying diff
CLUSTER_CTL_VER: 'v1.0.8' # ipfs-cluster-ctl used for pinning

concurrency:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
required: true
default: '/ipns/dist.ipfs.tech'
schedule:
- cron: '0 5 * * *' # UTC
- cron: '0 1 * * 1' # every monday morning, so we catch regressions during weekly triage

env:
DIST_ROOT: ${{ github.event.inputs.custom_dist_root || '/ipns/dist.ipfs.tech' }} # content root used for calculating diff to build
KUBO_VER: 'v0.24.0' # kubo daemon used for chunking and applying diff
CLUSTER_CTL_VER: 'v1.0.7' # ipfs-cluster-ctl used for pinning
KUBO_VER: 'v0.28.0' # kubo daemon used for chunking and applying diff
CLUSTER_CTL_VER: 'v1.0.8' # ipfs-cluster-ctl used for pinning

concurrency:
group: nightly
Expand Down
1 change: 1 addition & 0 deletions dists/go-ipfs/versions
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,4 @@ v0.27.0
v0.28.0-rc1
v0.28.0
v0.29.0-rc1
v0.29.0-rc2
1 change: 1 addition & 0 deletions dists/kubo/versions
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ v0.27.0
v0.28.0-rc1
v0.28.0
v0.29.0-rc1
v0.29.0-rc2
10 changes: 10 additions & 0 deletions scripts/ci/pin-to-cluster.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
#!/usr/bin/env bash
set -e

echo "::group::preconnect to cluster"
ipfs-cluster-ctl --enc=json \
--host "/dnsaddr/ipfs-websites.collab.ipfscluster.io" \
--basic-auth "${CLUSTER_USER}:${CLUSTER_PASSWORD}" \
peers ls | tee cluster-peers-ls
for maddr in $(jq -r '.ipfs.addresses[]?' cluster-peers-ls); do
ipfs swarm peering add $maddr
ipfs swarm connect $maddr || true &
done

echo "::group::pin add"
ipfs-cluster-ctl --enc=json \
--host "/dnsaddr/ipfs-websites.collab.ipfscluster.io" \
Expand Down

0 comments on commit c802ba7

Please sign in to comment.