mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
34 lines
888 B
YAML
34 lines
888 B
YAML
name: 'build'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ main, webfuse2 ]
|
|
pull_request:
|
|
branches: [ main, webfuse2 ]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
BUILD_TYPE: Release
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install APT dependencies
|
|
run: sudo apt install libfuse3-dev libwebsockets-dev libgtest-dev libgmock-dev clang-tidy valgrind
|
|
|
|
- name: Configure CMake
|
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
|
|
|
- name: Build
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
|
|
|
- name: Unit Test
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target test
|
|
|
|
- name: Memcheck
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target memcheck
|