22 lines
358 B
YAML
22 lines
358 B
YAML
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 |