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

use icapeg instead of c-icap in CI #385

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
11 changes: 7 additions & 4 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,6 @@ jobs:
- name: Install nginx
run: |
sudo apt-get install nginx-light
- name: Install and run c-icap
run: |
sudo apt-get install c-icap
sudo systemctl start c-icap
- name: Install netcat-openbsd
run: |
sudo apt-get install netcat-openbsd
Expand All @@ -119,6 +115,13 @@ jobs:
sudo curl https://raw.githubusercontent.com/fluent/fluent-bit/master/install.sh | sh
sudo cp ${{ github.workspace }}/scripts/coverage/g3proxy/fluent-bit.conf /etc/fluent-bit/fluent-bit.conf
sudo systemctl start fluent-bit
- name: Build and run icapeg
run: |
git clone https://github.com/egirna/icapeg.git
cd icapeg
sed -i 's/:8081/:6081/' server/server.go
go build
./icapeg &
- name: Install dnsmasq
run: |
sudo apt-get install dnsmasq-base
Expand Down
Loading