Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Better exception handling, build JSON report first as that's less lik… #17

Better exception handling, build JSON report first as that's less lik…

Better exception handling, build JSON report first as that's less lik… #17

Workflow file for this run

name: MemCapture Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Build MemCapture
steps:
- name: checkout
uses: actions/checkout@v3
- name: Dependencies
run: |
sudo apt update -y -q
sudo apt install -q -y cmake build-essential
- name: build
run: |
cd $GITHUB_WORKSPACE
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j$(nproc)