Commit 1ce046ee authored by Ivan Vandot's avatar Ivan Vandot Committed by GitHub

Fix workflow trigger (#609)

parent 2e2960bc
...@@ -36,7 +36,7 @@ jobs: ...@@ -36,7 +36,7 @@ jobs:
run: ./beekeeper check pingpong --api-scheme http --debug-api-scheme http --disable-namespace --debug-api-domain localhost --api-domain localhost --node-count "${REPLICA}" run: ./beekeeper check pingpong --api-scheme http --debug-api-scheme http --disable-namespace --debug-api-domain localhost --api-domain localhost --node-count "${REPLICA}"
- name: Clean the cluster - name: Clean the cluster
run: | run: |
./beeinfra.sh uninstall -r "${REPLICA}" helm uninstall bee -n bee
- name: Set testing cluster (Node connection) - name: Set testing cluster (Node connection)
run: ./beeinfra.sh install --local -r "${REPLICA}" run: ./beeinfra.sh install --local -r "${REPLICA}"
- name: Test fullconnectivity - name: Test fullconnectivity
...@@ -53,7 +53,7 @@ jobs: ...@@ -53,7 +53,7 @@ jobs:
run: ./beekeeper check pullsync --api-scheme http --debug-api-scheme http --disable-namespace --debug-api-domain localhost --api-domain localhost --node-count "${REPLICA}" --upload-node-count "${REPLICA}" --chunks-per-node 3 run: ./beekeeper check pullsync --api-scheme http --debug-api-scheme http --disable-namespace --debug-api-domain localhost --api-domain localhost --node-count "${REPLICA}" --upload-node-count "${REPLICA}" --chunks-per-node 3
- name: Clean the cluster - name: Clean the cluster
run: | run: |
./beeinfra.sh uninstall -r "${REPLICA}" helm uninstall bee -n bee
grep -vE 'bee|registry.localhost' /etc/hosts | sudo tee /etc/hosts grep -vE 'bee|registry.localhost' /etc/hosts | sudo tee /etc/hosts
- name: Set testing cluster (Node connection) 5 bee nodes - name: Set testing cluster (Node connection) 5 bee nodes
run: | run: |
......
...@@ -69,7 +69,7 @@ jobs: ...@@ -69,7 +69,7 @@ jobs:
env: env:
DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }} DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }}
- name: Trigger Beekeeper - name: Trigger Beekeeper
if: success() && ${{ github.ref }} == "refs/heads/master" if: success() && ${{ github.ref }} == "refs/heads/master" && matrix.os == 'ubuntu-latest'
uses: peter-evans/repository-dispatch@v1 uses: peter-evans/repository-dispatch@v1
with: with:
token: ${{ secrets.REPO_GHA_PAT }} token: ${{ secrets.REPO_GHA_PAT }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment