Skip to content

Commit

Permalink
chore: remove tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ralph-pichler committed Jul 27, 2021
1 parent ec33b17 commit 18b69b7
Showing 1 changed file with 2 additions and 46 deletions.
48 changes: 2 additions & 46 deletions .github/workflows/beekeeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
patch pkg/postage/postagecontract/contract.go .github/patches/postagecontract.patch
patch pkg/postage/listener/listener.go .github/patches/listener.patch
patch pkg/postage/service.go .github/patches/postageservice.patch
- name: Prepare local cluster
- name: Prepare testing cluster (Node connection and clef enabled)
run: |
printf ${{ secrets.CR_PAT }} | docker login ghcr.io -u bee-worker --password-stdin
make beekeeper BEEKEEPER_INSTALL_DIR=/usr/local/bin BEEKEEPER_USE_SUDO=true
Expand All @@ -53,56 +53,12 @@ jobs:
run: |
mkdir -p ~/.kube
cp /etc/rancher/k3s/k3s.yaml ~/.kube/config
- name: Set local cluster
run: |
make beelocal ACTION=add-hosts
timeout 10m make deploylocal BEEKEEPER_CLUSTER=local-dns
- name: Test pingpong
id: pingpong-1
run: until beekeeper check --cluster-name local-dns --checks ci-pingpong; do echo "waiting for pingpong..."; sleep .3; done
- name: Test fullconnectivity
id: fullconnectivity-1
run: beekeeper check --cluster-name local-dns --checks=ci-full-connectivity
- name: Test settlements
id: settlements-1
run: beekeeper check --cluster-name local-dns --checks=ci-settlements
- name: Sleep for time allowance to replenish
run: sleep 2
- name: Test pss
id: pss
run: beekeeper check --cluster-name local-dns --checks=ci-pss
- name: Test soc
id: soc
run: beekeeper check --cluster-name local-dns --checks=ci-soc
- name: Test pushsync (chunks)
id: pushsync-chunks-1
run: beekeeper check --cluster-name local-dns --checks=ci-pushsync-chunks
- name: Test pushsync (light mode chunks)
id: pushsync-chunks-2
run: beekeeper check --cluster-name local-dns --checks=ci-pushsync-light-chunks
- name: Test retrieval
id: retrieval-1
run: beekeeper check --cluster-name local-dns --checks=ci-retrieval
- name: Test manifest
id: manifest-1
run: beekeeper check --cluster-name local-dns --checks=ci-manifest
- name: Destroy the cluster
run: |
beekeeper delete bee-cluster --cluster-name local-dns
make beelocal ACTION=uninstall
- name: Prepare testing cluster (Node connection and clef enabled)
run: |
timeout 10m make beelocal OPTS='ci skip-vet'
- name: Set kube config
run: |
mkdir -p ~/.kube
cp /etc/rancher/k3s/k3s.yaml ~/.kube/config
- name: Set testing cluster (Node connection and clef enabled)
run: |
timeout 10m make deploylocal BEEKEEPER_CLUSTER=local-clef
- name: Test pingpong
id: pingpong-2
run: until beekeeper check --cluster-name local-clef --checks ci-pingpong; do echo "waiting for pingpong..."; sleep .3; done
run: timeout 10m until beekeeper check --cluster-name local-clef --checks ci-pingpong; do echo "waiting for pingpong..."; sleep .3; done
- name: Test fullconnectivity
id: fullconnectivity-2
run: beekeeper check --cluster-name local-clef --checks=ci-full-connectivity
Expand Down

0 comments on commit 18b69b7

Please sign in to comment.