Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #85
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: Build | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: > | |
sudo apt-get update && sudo apt-get install -y cmake build-essential pkg-config | |
apt-utils libssl-dev libzmq5 libzmq3-dev | |
libcurl4-openssl-dev libtclap-dev libscrypt-dev | |
python3 python3-pip gcc-9 g++-9 git | |
libboost-all-dev libgtest-dev | |
libsqlite3-dev libpq-dev odb libodb-dev | |
libodb-pgsql-dev libodb-pgsql-2.4 | |
libodb-sqlite-2.4 libodb-sqlite-dev libodb-boost-dev libgpiod-dev | |
- run: mkdir build | |
- name: Configure | |
working-directory: build | |
run: cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local | |
- name: Build | |
working-directory: build | |
run: make -j3 |