Skip to content

Commit

Permalink
fix(ci): remove step to stop mono service (#1168)
Browse files Browse the repository at this point in the history
Because

- mono service no longer exist in github runner instance

This commit

- remove step to stop mono service
  • Loading branch information
heiruwu authored Jan 20, 2025
1 parent 9004968 commit c4225a2
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 34 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/helm-integration-test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- name: Setup environment
run: |
sudo kill -9 `sudo lsof -t -i:8084`
sudo lsof -i -P -n | grep LISTEN
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/helm-integration-test-console.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- name: Setup environment
run: |
sudo kill -9 `sudo lsof -t -i:8084`
sudo lsof -i -P -n | grep LISTEN
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/integration-test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
# mono occupies port 8084 which conflicts with mgmt-backend
- name: Stop mono service
run: |
sudo kill -9 `sudo lsof -t -i:8084`
sudo lsof -i -P -n | grep LISTEN
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/integration-test-console.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
# mono occupies port 8084 which conflicts with mgmt-backend
- name: Stop mono service
run: |
sudo kill -9 `sudo lsof -t -i:8084`
sudo lsof -i -P -n | grep LISTEN
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/make-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ jobs:
make-all:
runs-on: ubuntu-latest
steps:
# mono occupies port 8084 which conflicts with mgmt-backend
- name: Stop mono service
run: |
sudo kill -9 `sudo lsof -t -i:8084`
sudo lsof -i -P -n | grep LISTEN
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/make-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ jobs:
make-latest:
runs-on: ubuntu-latest
steps:
# mono occupies port 8084 which conflicts with mgmt-backend
- name: Stop mono service
run: |
sudo kill -9 `sudo lsof -t -i:8084`
sudo lsof -i -P -n | grep LISTEN
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
Expand Down

0 comments on commit c4225a2

Please sign in to comment.