Skip to content

Added functions and codes to make stitch code work #5

Added functions and codes to make stitch code work

Added functions and codes to make stitch code work #5

name: ubuntu-latest-cpu
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build_and_test_ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build_cpu
run: |
mkdir build_cpu
cd build_cpu
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=`pwd`/../../TELite-install-cpu ..
make -j2 install
cd ..