1414 SETUP_CONTRACT_IMAGE : " ethersphere/bee-localchain"
1515 SETUP_CONTRACT_IMAGE_TAG : " 0.9.4"
1616 BEELOCAL_BRANCH : " main"
17- BEEKEEPER_BRANCH : " master "
17+ BEEKEEPER_BRANCH : " v1-feed "
1818 BEEKEEPER_METRICS_ENABLED : false
1919 REACHABILITY_OVERRIDE_PUBLIC : true
2020 BATCHFACTOR_OVERRIDE_PUBLIC : 2
@@ -158,6 +158,9 @@ jobs:
158158 - name : Test manifest
159159 id : manifest
160160 run : timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks=ci-manifest
161+ - name : Test manifest v1
162+ id : manifest-v1
163+ run : timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks=ci-manifest-v1
161164 - name : Test postage stamps
162165 id : postage-stamps
163166 run : timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks ci-postage
@@ -173,6 +176,9 @@ jobs:
173176 - name : Test act
174177 id : act
175178 run : timeout ${TIMEOUT} bash -c 'until beekeeper check --cluster-name local-dns --checks ci-act; do echo "waiting for act..."; sleep .3; done'
179+ - name : Test feeds v1
180+ id : feeds-v1
181+ run : timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks=ci-feed-v1
176182 - name : Test feeds
177183 id : feeds
178184 run : timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks=ci-feed
@@ -190,6 +196,9 @@ jobs:
190196 if ${{ steps.pushsync-chunks-2.outcome=='failure' }}; then FAILED=pushsync-chunks-2; fi
191197 if ${{ steps.retrieval.outcome=='failure' }}; then FAILED=retrieval; fi
192198 if ${{ steps.manifest.outcome=='failure' }}; then FAILED=manifest; fi
199+ if ${{ steps.manifest-v1.outcome=='failure' }}; then FAILED=manifest-v1; fi
200+ if ${{ steps.feeds.outcome=='failure' }}; then FAILED=feeds; fi
201+ if ${{ steps.feeds-v1.outcome=='failure' }}; then FAILED=feeds-v1; fi
193202 if ${{ steps.act.outcome=='failure' }}; then FAILED=act; fi
194203 curl -sSf -X POST -H "Content-Type: application/json" -d "{\"text\": \"**${RUN_TYPE}** Beekeeper Error\nBranch: \`${{ github.head_ref }}\`\nUser: @${{ github.event.pull_request.user.login }}\nDebugging artifacts: [click](https://$BUCKET_NAME.$AWS_ENDPOINT/artifacts_$VERTAG.tar.gz)\nStep failed: \`${FAILED}\`\"}" https://beehive.ethswarm.org/hooks/${{ secrets.TUNSHELL_KEY }}
195204 echo "Failed test: ${FAILED}"
0 commit comments