forked from NETWAYS/check_interfaces
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b97c3b
commit ba9a830
Showing
3 changed files
with
69 additions
and
56 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: Build check_interfaces | ||
|
||
on: | ||
pull_request: | ||
branches: ["*"] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
CFLAGS: "-Wall" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: sudo apt-get update && sudo apt-get install -y libsnmp-dev | ||
|
||
- name: Configure | ||
run: | | ||
autoreconf | ||
./configure | ||
- name: Make | ||
run: make | ||
|
||
- name: Start simmulation | ||
run: | | ||
setup-snmpsim-data /tmp/data | ||
snmpsim-command-responder --daemonize --pid-file /tmp/snmp --data-dir=/tmp/data/network/switch --agent-udpv4-endpoint=127.0.0.1:1611 | ||
- name: Sleep | ||
run: sleep 30s | ||
shell: bash | ||
|
||
- name: check_cisco_health | ||
run: ./check_interfaces -h 127.0.0.1 --port=1611 -c cisco-c3560 | ||
|
||
clang-build: | ||
runs-on: ubuntu-latest | ||
env: | ||
CC: clang | ||
CFLAGS: "-Wall" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: sudo apt-get update && sudo apt-get install -y libsnmp-dev | ||
|
||
- name: Configure | ||
run: | | ||
autoreconf | ||
./configure | ||
- name: Make | ||
run: make | ||
|
||
- name: Start simmulation | ||
run: | | ||
setup-snmpsim-data /tmp/data | ||
snmpsim-command-responder --daemonize --pid-file /tmp/snmp --data-dir=/tmp/data/network/switch --agent-udpv4-endpoint=127.0.0.1:1611 | ||
- name: Sleep | ||
run: sleep 30s | ||
shell: bash | ||
|
||
- name: check_cisco_health | ||
run: ./check_interfaces -h 127.0.0.1 --port=1611 -c cisco-c3560 |
This file was deleted.
Oops, something went wrong.