Skip to content

Commit

Permalink
ci: update kill command
Browse files Browse the repository at this point in the history
  • Loading branch information
jwulf committed Jan 13, 2025
1 parent 37de21b commit ee873b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

# Workaround for https://github.com/actions/runner-images/issues/2821
- name: Remove mono blocking 8084 port
run: sudo kill -9 $(sudo lsof -t -i:8084)
run: sudo kill -s 9 $(sudo lsof -t -i:8084)

- name: Set up Docker
run: |
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

# Workaround for https://github.com/actions/runner-images/issues/2821
- name: Remove mono blocking 8084 port
run: sudo kill -9 $(sudo lsof -t -i:8084)
run: sudo kill -s 9 $(sudo lsof -t -i:8084)

- name: Set up Docker
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

# Workaround for https://github.com/actions/runner-images/issues/2821
- name: Remove mono blocking 8084 port
run: sudo kill -9 $(sudo lsof -t -i:8084)
run: sudo kill -s 9 $(sudo lsof -t -i:8084)

- name: Set up Docker
run: |
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:

# Workaround for https://github.com/actions/runner-images/issues/2821
- name: Remove mono blocking 8084 port
run: sudo kill -9 $(sudo lsof -t -i:8084)
run: sudo kill -s 9 $(sudo lsof -t -i:8084)

- name: Set up Docker
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

# Workaround for https://github.com/actions/runner-images/issues/2821
- name: Remove mono blocking 8084 port
run: sudo kill -9 $(sudo lsof -t -i:8084)
run: sudo kill -s 9 $(sudo lsof -t -i:8084)

- name: Set up Docker
run: |
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

# Workaround for https://github.com/actions/runner-images/issues/2821
- name: Remove mono blocking 8084 port
run: sudo kill -9 $(sudo lsof -t -i:8084)
run: sudo kill -s 9 $(sudo lsof -t -i:8084)

- name: Set up Docker
run: |
Expand Down

0 comments on commit ee873b1

Please sign in to comment.