add config nak and reject unit test #56
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: vRG ci | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get update && sudo apt-get install -y libnuma-dev linux-headers-$(uname -r) python3-pip git gcc make libtool-bin pkg-config pciutils iproute2 kmod vim net-tools libconfig-dev | |
- run: sudo pip3 install setuptools meson ninja pyelftools | |
- run: sudo ${{ github.workspace }}/boot.sh | |
- run: sudo docker build --no-cache -t vrg:latest . | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get update && sudo apt-get install -y libnuma-dev linux-headers-$(uname -r) python3-pip git gcc make libtool-bin pkg-config pciutils iproute2 kmod vim net-tools libconfig-dev | |
- run: sudo pip3 install setuptools meson ninja pyelftools | |
- run: sudo ${{ github.workspace }}/boot.sh | |
- run: cd ${{ github.workspace }} && make test |