Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
grongor committed Aug 4, 2020
1 parent 91c5086 commit 1dbb6da
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
tools: cs2pr

- name: Install dependencies
run: sudo apt install php${{ matrix.php-version }}-snmp
run: |
sudo add-apt-repository ppa:ondrej/php
sudo apt update
sudo apt install php${{ matrix.php-version }}-snmp
- name: Cache dependencies installed with composer
uses: actions/cache@v1
Expand Down Expand Up @@ -45,6 +48,7 @@ jobs:
- uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: snmp
php-version: ${{ matrix.php-version }}
tools: cs2pr

Expand Down Expand Up @@ -81,9 +85,12 @@ jobs:
coverage: none
php-version: ${{ matrix.php-version }}
extensions: json
tools: pecl

- name: Install dependencies
run: sudo apt install php${{ matrix.php-version }}-snmp python3-pip snmp
run: |
pecl install snmp
sudo apt install python3-pip snmp
- name: Install snmpsim
run: sudo pip3 install snmpsim
Expand Down

0 comments on commit 1dbb6da

Please sign in to comment.