@@ -0,0 +1,22 @@
|
||||
name: Build Packages
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
tags:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
build-library:
|
||||
name: Build
|
||||
runs-on: durin
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build library
|
||||
shell: bash
|
||||
run: |
|
||||
mkdir -p build
|
||||
cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=Release ..
|
||||
make -j
|
||||
Reference in New Issue
Block a user