148 even more doc updates #621
This file contains hidden or 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
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
# Build and Integration Test | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
OS: | |
- macos-latest | |
- ubuntu-latest | |
- ubuntu-24.04 | |
- ubuntu-22.04 | |
runs-on: ${{ matrix.OS }} | |
steps: | |
# checkout source code | |
- uses: actions/checkout@v2 | |
# install doxygen | |
- name: Install Doxygen | |
run: | | |
if [[ "$RUNNER_OS" == "Linux" ]]; then | |
sudo apt-get install doxygen -y | |
elif [[ "$RUNNER_OS" == "macOS" ]]; then | |
brew install --formula doxygen | |
fi | |
# compile SIPNET | |
- name: compile sipnet | |
run: make | |
# run smoke tests | |
- name: Run SIPNET smoke tests | |
shell: bash | |
run: tests/smoke/run_smoke.sh | |
# Run Unit Tests | |
test: | |
needs: build | |
strategy: | |
fail-fast: false | |
matrix: | |
OS: | |
- macos-latest | |
- ubuntu-latest | |
- ubuntu-24.04 | |
- ubuntu-22.04 | |
runs-on: ${{ matrix.OS }} | |
steps: | |
# checkout source code | |
- uses: actions/checkout@v2 | |
# compile unit tests | |
- name: compile tests | |
run: make test | |
# run tests | |
- name: Run Unit Tests | |
run: make testrun |