Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: beekeeper #4614

Closed
wants to merge 26 commits into from
Closed
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
877a809
chore: change beekeeper branch to golang-1.21
gacevicljubisa Nov 13, 2023
6791e57
Merge branch 'master' of https://github.com/ethersphere/bee into beek…
gacevicljubisa Nov 23, 2023
3f1a9b0
chore: change beekeeper branch to rate-limiting
gacevicljubisa Nov 23, 2023
cfae43d
Merge branch 'master' of https://github.com/ethersphere/bee into beek…
gacevicljubisa Dec 17, 2023
47d93aa
chore: change beekeeper branch to pod-operator
gacevicljubisa Dec 17, 2023
41a5deb
chore: change beekeeper branch to logger
gacevicljubisa Dec 18, 2023
1efdae6
Merge branch 'master' of https://github.com/ethersphere/bee into beek…
gacevicljubisa Dec 21, 2023
79ec150
chore: change beekeeper branch to fix_logger
gacevicljubisa Dec 21, 2023
60127d1
chore: change beekeeper branch to dependabot
gacevicljubisa Dec 30, 2023
88f2708
Merge branch 'master' of https://github.com/ethersphere/bee into beek…
gacevicljubisa Mar 17, 2024
4063ade
test: change beekeeper branch to orchestration-nokube
gacevicljubisa Mar 17, 2024
fac7fdc
chore: change beekeeper branch to golang-v1.22
gacevicljubisa Mar 17, 2024
4404402
test: change beekeeper branch to orchestration-nokube-v2
gacevicljubisa Mar 18, 2024
c991085
Merge branch 'master' of https://github.com/ethersphere/bee into beek…
gacevicljubisa Mar 18, 2024
8109513
Merge branch 'master' of https://github.com/ethersphere/bee into beek…
gacevicljubisa Mar 31, 2024
109b55f
chore(workflow): change beekeeper branch to golang-v1.22
gacevicljubisa Mar 31, 2024
904059d
chore(workflow): change beekeeper branch to orchestration-nokube-v2
gacevicljubisa Mar 31, 2024
67d2d0d
Merge branch 'master' of https://github.com/ethersphere/bee into beek…
gacevicljubisa Apr 11, 2024
e6341a4
chore(workflow): change beekeeper branch to golang-v1.22
gacevicljubisa Apr 11, 2024
e2c4947
chore(workflow): use beekeeper golang version 1.22
gacevicljubisa Apr 11, 2024
82e4d2b
Merge branch 'master' of https://github.com/ethersphere/bee into beek…
gacevicljubisa Apr 15, 2024
32021f3
wip(workflow): check for go.mod
gacevicljubisa Apr 15, 2024
4885e13
wip(workflow): print go.mod
gacevicljubisa Apr 15, 2024
4d54790
wip(workflow): print go.mod
gacevicljubisa Apr 15, 2024
be78587
wip(workflow): test beekeeper workflow
gacevicljubisa Apr 15, 2024
596a2c8
wip(workflow): setup go for beekeeper and bee
gacevicljubisa Apr 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 14 additions & 9 deletions .github/workflows/beekeeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
SETUP_CONTRACT_IMAGE: "ethersphere/bee-localchain"
SETUP_CONTRACT_IMAGE_TAG: "0.8.3"
BEELOCAL_BRANCH: "main"
BEEKEEPER_BRANCH: "master"
BEEKEEPER_BRANCH: "golang-v1.22"
BEEKEEPER_METRICS_ENABLED: false
REACHABILITY_OVERRIDE_PUBLIC: true
BATCHFACTOR_OVERRIDE_PUBLIC: 2
Expand Down Expand Up @@ -43,7 +43,19 @@ jobs:
with:
fetch-depth: 0
ref: ${{ github.event.client_payload.ref }}
- name: Setup Go
- name: Setup Go for Bekeeper
uses: actions/setup-go@v5
with:
cache: false
go-version: '1.22'
- name: Install beekeeper
run: |
export PATH=$(pwd):$PATH
timeout ${TIMEOUT} make beekeeper BEEKEEPER_INSTALL_DIR=$(pwd)
beekeeper version --log-verbosity 0
mv ~/.beekeeper.yaml .beekeeper.yaml
mv ~/.beekeeper/local.yaml local.yaml
- name: Setup Go for Bee
uses: actions/setup-go@v5
with:
cache: false
Expand Down Expand Up @@ -72,13 +84,6 @@ jobs:
patch pkg/retrieval/retrieval.go .github/patches/retrieval.patch
make binary
mv dist/bee bee-1
- name: Install beekeeper
run: |
export PATH=$(pwd):$PATH
timeout ${TIMEOUT} make beekeeper BEEKEEPER_INSTALL_DIR=$(pwd)
beekeeper version --log-verbosity 0
mv ~/.beekeeper.yaml .beekeeper.yaml
mv ~/.beekeeper/local.yaml local.yaml
- uses: actions/upload-artifact@v4
with:
name: temp-artifacts
Expand Down
Loading