cmake #2
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 Linux | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/build-linux.yml' | |
- 'src/**' | |
- 'include/**' | |
- 'example/**' | |
- 'CMakeLists.txt' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [x86_64, arm64] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install CMake | |
run: sudo apt-get update | | |
sudo apt-get install -y cmake | |
- name: Download ONNX Runtime | |
run: | | |
if [ "${{ matrix.arch }}" == "x86_64" ]; then | |
wget https://github.com/microsoft/onnxruntime/releases/download/v1.18.1/onnxruntime-linux-x64-1.18.1.tgz -O onnxruntime.tgz | |
else | |
wget https://github.com/microsoft/onnxruntime/releases/download/v1.18.1/onnxruntime-linux-arm64-1.18.1.tgz -O onnxruntime.tgz | |
fi | |
mkdir -p onnxruntime | |
tar -xzf onnxruntime.tgz -C onnxruntime --strip-components 1 | |
mkdir -p lib | |
rsync -a onnxruntime/lib/ lib/ | |
- name: Configure CMake | |
run: cmake -B build -DCMAKE_BUILD_TYPE=Release -DONNXRUNTIME_DIR=${PWD}/onnxruntime | |
- name: Build | |
run: cmake --build build --config Release |