Update pre-requirements.sh #15
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: Polycube Build | |
on: push | |
env: | |
BUILD_TYPE: Debug | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ssh-key: ${{ secrets.BCC_MODULE_PULL_CONTENT_KEY }} | |
submodules: 'recursive' | |
- name: System info | |
run: | | |
uname -a | |
- name: Configure and Build | |
run: | | |
chmod +x "${GITHUB_WORKSPACE}/scripts/install.sh" | |
${GITHUB_WORKSPACE}/scripts/install.sh | |
- name: Run | |
run: | | |
sudo timeout --preserve-status -s SIGINT 30 sudo polycubed | |