Update CITATION.cff #154
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: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install other dependencies | |
run: sudo apt-get update && sudo apt-get install -y libopencv-dev python3 python3-dev python3-pybind11 | |
- name: Cache Qt | |
id: cache-qt | |
uses: actions/cache@v1 | |
with: | |
path: ${{ github.workspace }}/Qt | |
key: ${{ runner.os }}-QtCache | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v2 | |
with: | |
version: '5.14.2' | |
host: 'linux' | |
target: 'desktop' | |
dir: '${{ github.workspace }}' | |
install-deps: 'true' | |
cached: ${{ steps.cache-qt.outputs.cache-hit }} | |
tools: 'tools_ifw,4.0,qt.tools.ifw.40 tools_qtcreator,4.13.2-0,qt.tools.qtcreator' | |
tools-only: 'false' | |
aqtversion: '==0.11.1' | |
py7zrversion: '==0.11.3' | |
- name: Create build folder | |
run: mkdir -p ./build/release | |
- name: qmake | |
working-directory: ./build/release | |
run: qmake CONFIG+="Release" ../../6d-pat.pro | |
- name: make | |
run: make -j8 --directory ./build/release | |
tests: | |
runs-on: ubuntu-20.04 | |
needs: build | |
steps: | |
- name: todo | |
run: echo todo |