fix path #3
Workflow file for this run
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: UnitTest | |
on: | |
- push | |
- pull_request | |
- workflow_call | |
jobs: | |
test: | |
name: Test on ${{ matrix.os }}, ${{ matrix.install_from }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] #, windows-latest, macos-latest] | |
install_from: [make, cmake] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Cache files | |
uses: actions/cache@v3 | |
with: | |
path: | | |
example-data/ | |
key: ${{ runner.os }}-20231096 | |
- name: Install dependency | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt-get install --yes libeigen3-dev libjpeg-dev | |
- name: Build with make | |
if: matrix.install_from == 'make' | |
run: | | |
make -j -C src | |
- name: Build with cmake | |
if: matrix.install_from == 'cmake' | |
run: | | |
mkdir build && cmake -B build && make -C build | |
cp build/src/image-stitching ./src/ | |
- name: Run Unittests | |
run: cd src && python run_test.py |