Added basic run tests to build workflow. #245
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
name: C build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
include: | |
- os: ubuntu-latest | |
setup-env: sudo apt-get update && sudo apt-get install -y build-essential autoconf gettext autopoint libncursesw5-dev libssl-dev git libmaxminddb-dev | |
- os: macos-latest | |
setup-env: brew update && brew install ncurses gettext autoconf automake libmaxminddb | |
steps: | |
- name: Setup env. | |
run: ${{ matrix.setup-env }} | |
- uses: actions/checkout@v3 | |
- name: autoreconf | |
run: autoreconf -fiv | |
- name: configure | |
run: ./configure | |
- name: make | |
run: sudo make | |
- name: make check | |
run: sudo make check | |
- name: make distcheck | |
run: sudo make distcheck | |
- name: define log | |
run: | | |
echo -e 'localhost:80 192.168.0.1 - - [01/Jul/2013:06:27:38 -0500] "GET / HTTP/1.1" 200 3829 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0"\ | |
\ngoogle.com:80 ::1 - - [01/Jul/2013:06:25:11 -0500] "OPTIONS * HTTP/1.0" 200 136 "-" "Apache (internal dummy connection)"\ | |
\nbing.com:80 142.250.190.142 - - [01/Jul/2013:06:41:31 -0500] "-" 408 0 "-" "-"\ | |
\nyahoo.com:80 74.6.143.25 - - [01/Jul/2013:07:20:02 -0500] "HEAD / HTTP/1.1" 200 213 "-" "Wget/1.14 (linux-gnu)"' > access.log | |
- name: Run goaccess single thread | |
run: ./goaccess access.log --log-format=VCOMBINED -o report.html | |
- name: Run goaccess multi-thread | |
run: ./goaccess access.log --log-format=VCOMBINED -o report.html -j 2 |