Skip to content

Commit

Permalink
Merge pull request #40 from sticnarf/fix-ci
Browse files Browse the repository at this point in the history
Fix broken apt install on CI
  • Loading branch information
sticnarf authored Jun 17, 2024
2 parents 9fdcccc + 3ba2dcd commit a04d649
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,15 @@ jobs:
override: true
- name: Install 3proxy
run: |
sudo add-apt-repository ppa:artyom.h31/3proxy -y
cd $HOME
curl -OL https://github.com/3proxy/3proxy/archive/refs/tags/0.8.13.tar.gz
tar xvf 0.8.13.tar.gz
cd 3proxy-0.8.13 && ln -s Makefile.Linux Makefile && make -j$(nproc)
sudo apt-get update
sudo apt-get install 3proxy socat -y
sudo apt-get install socat -y
- name: Run tests
run: |
cargo build --examples
cargo build --verbose --all
cargo test --lib --verbose
tests/integration_tests.sh
env PATH=$HOME/3proxy-0.8.13/src:$PATH tests/integration_tests.sh

0 comments on commit a04d649

Please sign in to comment.