From 268c96fcfd05686c053dedd5c330e4c30aa98dc2 Mon Sep 17 00:00:00 2001 From: TechyGuy17 <65623992+TechyGuy17@users.noreply.github.com> Date: Fri, 8 Dec 2023 11:35:32 +0100 Subject: [PATCH] Started working on workflow --- .github/workflows/release.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000000..26b1d6a83d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,21 @@ +name: Compile binaries + +# For production +# on: +# release: +# types: [published] + + +# For testing +on: push + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: install deps + run: apt install git build-essential cmake libuv1-dev libssl-dev libhwloc-dev + - name: build + run: mkdir build && cd build && cmake .. && make