Skip to content

Commit

Permalink
fix git action ci
Browse files Browse the repository at this point in the history
  • Loading branch information
staskobzar committed Apr 9, 2024
1 parent 7e8f272 commit 414c385
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
run: |
sudo apt-get -qq update
sudo apt-get -y --no-install-recommends install build-essential automake ncurses-dev cmake libcmocka0 zip pkg-config autoconf libterm-ui-perl libasound2-dev libalsaplayer-dev openssl libssl-dev apt-utils xterm
sudo apt-get -y install curl ncurses-dev libsctp-dev libpcap-dev ca-certificates sip-tester wget
wget https://github.com/pjsip/pjproject/archive/refs/tags/2.14.1.zip
unzip 2.14.1.zip
cd pjproject-2.14.1 && ./configure --prefix=/usr && make dep && make && sudo make install
sudo apt-get -y install curl ncurses-dev libsctp-dev libpcap-dev ca-certificates sip-tester wget unzip
wget https://github.com/pjsip/pjproject/archive/refs/tags/2.9.zip
unzip 2.9.zip
cd pjproject-2.0 && ./configure --prefix=/usr && make dep && make && sudo make install
- name: Build
run: make
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,16 @@ PKG_CONFIG_PATH=/usr/local/lib/pkgconfig make
### Ubuntu
Also, packages (rpm, deb and tgz) are available in "[dist](https://github.com/staskobzar/sippak/tree/master/dist)" directory.

Here is step by step install example for Ubuntu. Note version 2.7.x of pjproject. This will install everything for deployement and development. "make test" is optional.
Here is step by step install example for Ubuntu. Note version 2.9 of pjproject. This will install everything for deployement and development. "make test" is optional.
```sh
$ apt-get update
$ apt-get -y install build-essential automake ncurses-dev cmake libcmocka0 git \
pkg-config autoconf libterm-ui-perl libasound2-dev libalsaplayer-dev openssl libssl-dev apt-utils xterm \
curl ncurses-dev libsctp-dev libpcap-dev ca-certificates sip-tester
$ git clone -b 2.7.x --depth 1 https://github.com/pjsip/pjproject.git
$ cd pjproject
$ git clone -b 2. --depth 1 https://github.com/pjsip/pjproject.git
$ wget https://github.com/pjsip/pjproject/archive/refs/tags/2.9.zip
$ unzip 2.9.zip
$ cd pjproject-2.9
$ ./configure --prefix=/usr && make dep && make && make install
$ cd ..
$ git clone https://github.com/staskobzar/sippak.git
Expand Down

0 comments on commit 414c385

Please sign in to comment.